Added version number to Windows packaging folder name

This commit is contained in:
Greg Zharun 2014-06-18 13:36:45 +03:00
parent 6af1593e6c
commit 6ebcb81dcf

View file

@ -38,9 +38,9 @@ then
# Figure out the Build Type # Figure out the Build Type
if grep -q "DEBUG = True" $BUILD_CACHE_FILE; then if grep -q "DEBUG = True" $BUILD_CACHE_FILE; then
DEBUG=1 DEBUG=1
PACKAGE_DIR="$HOME/$APPNAME-win32-dbg" PACKAGE_DIR="$HOME/$APPNAME-${release_version}-win32-dbg"
else else
PACKAGE_DIR="$HOME/$APPNAME-win32" PACKAGE_DIR="$HOME/$APPNAME-${release_version}-win32"
fi fi
if grep -q "BUILD_TESTS = True" $BUILD_CACHE_FILE; then if grep -q "BUILD_TESTS = True" $BUILD_CACHE_FILE; then