From 7ee3feccd7f3fedefbf71d6398696d3f8a6f7ab3 Mon Sep 17 00:00:00 2001 From: Greg Albrecht Date: Fri, 30 Aug 2024 16:49:34 -0700 Subject: [PATCH] Fix for broken deb install, see pytak#76. --- aircot/__init__.py | 2 +- debian/aircot.postinst | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/aircot/__init__.py b/aircot/__init__.py index 3851044..4b9eb92 100644 --- a/aircot/__init__.py +++ b/aircot/__init__.py @@ -18,7 +18,7 @@ """Aircraft classifier for TAK.""" -__version__ = "3.0.0" +__version__ = "3.0.1" # COMPAT Python 3.6 test/build work-around: try: diff --git a/debian/aircot.postinst b/debian/aircot.postinst index e69de29..fce18d6 100644 --- a/debian/aircot.postinst +++ b/debian/aircot.postinst @@ -0,0 +1,5 @@ +#!/bin/sh + +set -e + +exit 0