Filter out the 'v' from the version tag, issue #134

This commit is contained in:
Cameron Sparr
2015-08-24 10:39:15 -06:00
parent b2c2a64da9
commit 0a51728df9

View File

@@ -188,7 +188,7 @@ if [ "$1" == "-h" ]; then
usage 0
fi
VERSION=`git describe --always --tags`
VERSION=`git describe --always --tags | tr -d v`
echo -e "\nStarting package process, version: $VERSION\n"