bugfix: bash substitution of SHORTVERSION was wrong

master
Marius Kintel 2015-04-21 11:10:02 -04:00
parent b3ae7fa1ff
commit 12a43fd942
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ if test -z "$VERSION"; then
VERSION=$VERSIONDATE
SNAPSHOT=snapshot
fi
SHORTVERSION=${VERSION##-}
SHORTVERSION=${VERSION%%-*}
# Turn off ccache, just for safety
PATH=${PATH//\/opt\/local\/libexec\/ccache:}