remove pre-commit hook

increamenting the version number per commit doesn't seem like a good
idea anymore.
This commit is contained in:
Rossen Georgiev 2014-12-19 23:59:45 +00:00
parent e81254f352
commit 6d0c4acf81
1 changed files with 0 additions and 12 deletions

View File

@ -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