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 3d05575e9d
commit 143ec1a019
1 changed files with 1 additions and 1 deletions

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"