From 87f8ead07e57016fcdbcb54044a5f1d666ea0f85 Mon Sep 17 00:00:00 2001 From: YPozdnyakov Date: Thu, 13 Nov 2014 11:43:12 +0200 Subject: [PATCH] [Summary]: changes to par command to provide approved build name's format --- tools/windows_packaging/win32-env.sh | 4 ++-- wscript | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/windows_packaging/win32-env.sh b/tools/windows_packaging/win32-env.sh index 208cb1c891..8dae0e1b47 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-${release_version}-win32-dbg" + PACKAGE_DIR="$HOME/$APPNAME-${release_version}-dbg" else - PACKAGE_DIR="$HOME/$APPNAME-${release_version}-win32" + PACKAGE_DIR="$HOME/$APPNAME-${release_version}" fi if grep -q "BUILD_TESTS = True" $BUILD_CACHE_FILE; then diff --git a/wscript b/wscript index 5ff8b97660..230e0cc3a8 100755 --- a/wscript +++ b/wscript @@ -48,7 +48,7 @@ V = MAJOR + '.' + MINOR + '.' + MICRO # because if it is, it breaks waf somehow. # VERSION = V.encode ('ascii', 'ignore') -APPNAME = 'Tracks Live' +APPNAME = 'TracksLive' PROGRAM_VERSION = MAJOR.encode ('ascii', 'ignore') # Mandatory variables