From 6ebcb81dcf64a77c07f96f6518034fca0605c86c Mon Sep 17 00:00:00 2001 From: Greg Zharun Date: Wed, 18 Jun 2014 13:36:45 +0300 Subject: [PATCH] Added version number to Windows packaging folder name --- tools/windows_packaging/win32-env.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/windows_packaging/win32-env.sh b/tools/windows_packaging/win32-env.sh index 19ab2870c6..208cb1c891 100755 --- a/tools/windows_packaging/win32-env.sh +++ b/tools/windows_packaging/win32-env.sh @@ -38,9 +38,9 @@ then # Figure out the Build Type if grep -q "DEBUG = True" $BUILD_CACHE_FILE; then DEBUG=1 - PACKAGE_DIR="$HOME/$APPNAME-win32-dbg" + PACKAGE_DIR="$HOME/$APPNAME-${release_version}-win32-dbg" else - PACKAGE_DIR="$HOME/$APPNAME-win32" + PACKAGE_DIR="$HOME/$APPNAME-${release_version}-win32" fi if grep -q "BUILD_TESTS = True" $BUILD_CACHE_FILE; then