From a221a4dc94d4c01908d04a622a419bb9ed989e99 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 5 Feb 2015 14:53:11 +0000 Subject: [PATCH] dev-channel deploy improved --- Telegram/DeployWin.sh | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/Telegram/DeployWin.sh b/Telegram/DeployWin.sh index 63c767085..1284d6da5 100644 --- a/Telegram/DeployWin.sh +++ b/Telegram/DeployWin.sh @@ -1,21 +1,26 @@ AppVersion=`./Version.sh | awk -F " " '{print $1}'` AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` +DevChannel=`./Version.sh | awk -F " " '{print $3}'` +DevPostfix='' +if [ "$DevChannel" != "0" ]; then + DevPostfix='.dev' +fi -if [ ! -f "./../Win32/Deploy/deploy/$AppVersionStr/tupdate$AppVersion" ]; then +if [ ! -f "./../Win32/Deploy/deploy/$AppVersionStr$DevPostfix/tupdate$AppVersion" ]; then echo "tupdate$AppVersion not found!" exit 1 fi -if [ ! -f "./../Win32/Deploy/deploy/$AppVersionStr/tportable.$AppVersionStr.zip" ]; then - echo "tportable.$AppVersionStr.zip not found!" +if [ ! -f "./../Win32/Deploy/deploy/$AppVersionStr$DevPostfix/tportable.$AppVersionStr$DevPostfix.zip" ]; then + echo "tportable.$AppVersionStr$DevPostfix.zip not found!" exit 1 fi -if [ ! -f "./../Win32/Deploy/deploy/$AppVersionStr/tsetup.$AppVersionStr.exe" ]; then - echo "tsetup.$AppVersionStr.exe not found!" +if [ ! -f "./../Win32/Deploy/deploy/$AppVersionStr$DevPostfix/tsetup.$AppVersionStr$DevPostfix.exe" ]; then + echo "tsetup.$AppVersionStr$DevPostfix.exe not found!" exit 1 fi -cp -v ./../Win32/Deploy/deploy/$AppVersionStr/tupdate$AppVersion /z/TBuild/tother/tsetup/ -cp -v ./../Win32/Deploy/deploy/$AppVersionStr/tportable.$AppVersionStr.zip /z/TBuild/tother/tsetup/ -cp -v ./../Win32/Deploy/deploy/$AppVersionStr/tsetup.$AppVersionStr.exe /z/TBuild/tother/tsetup/ +cp -v ./../Win32/Deploy/deploy/$AppVersionStr$DevPostfix/tupdate$AppVersion /z/TBuild/tother/tsetup/ +cp -v ./../Win32/Deploy/deploy/$AppVersionStr$DevPostfix/tportable.$AppVersionStr$DevPostfix.zip /z/TBuild/tother/tsetup/ +cp -v ./../Win32/Deploy/deploy/$AppVersionStr$DevPostfix/tsetup.$AppVersionStr$DevPostfix.exe /z/TBuild/tother/tsetup/