diff --git a/hooks/pre-commit b/hooks/pre-commit deleted file mode 100755 index ff73144..0000000 --- a/hooks/pre-commit +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -VERSTR="`git describe --long --tags --dirty --always`" - -VER1="`echo $VERSTR | cut -d'-' -f1`" -VER2=$((`echo $VERSTR | cut -d'-' -f2` + 1)) - -VERSTR="__version__ = '${VER1}.${VER2}'" - -echo "$VERSTR" > aprslib/version.py - -git add aprslib/version.py