Filter out the 'v' from the version tag, issue #134
This commit is contained in:
parent
b2c2a64da9
commit
768e701539
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue