From 696c5df092a9980b7d04a5f998e90c6111b22040 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sat, 22 Nov 2014 13:21:50 +0300 Subject: [PATCH] improved deploy sh --- Telegram/DeployLinux.sh | 4 ++-- Telegram/DeployLinux32.sh | 4 ++-- Telegram/DeployMacWin.sh | 4 ++-- Telegram/DeployWin.sh | 4 ++-- Telegram/PrepareLinux.sh | 4 ++-- Telegram/PrepareLinux32.sh | 4 ++-- Telegram/PrepareMac.sh | 4 ++-- Telegram/Version.sh | 2 ++ 8 files changed, 16 insertions(+), 14 deletions(-) create mode 100755 Telegram/Version.sh diff --git a/Telegram/DeployLinux.sh b/Telegram/DeployLinux.sh index 8e3d2b69a..48d92efe8 100755 --- a/Telegram/DeployLinux.sh +++ b/Telegram/DeployLinux.sh @@ -1,5 +1,5 @@ -AppVersionStr=0.6.12 -AppVersion=6012 +AppVersion=`./Version.sh | awk -F " " '{print $1}'` +AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` if [ ! -f "./../Linux/Release/deploy/$AppVersionStr/tlinuxupd$AppVersion" ]; then echo "tlinuxupd$AppVersion not found!"; diff --git a/Telegram/DeployLinux32.sh b/Telegram/DeployLinux32.sh index 653b71f94..240b287ea 100755 --- a/Telegram/DeployLinux32.sh +++ b/Telegram/DeployLinux32.sh @@ -1,5 +1,5 @@ -AppVersionStr=0.6.12 -AppVersion=6012 +AppVersion=`./Version.sh | awk -F " " '{print $1}'` +AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` if [ ! -f "./../Linux/Release/deploy/$AppVersionStr/tlinux32upd$AppVersion" ]; then echo "tlinux32upd$AppVersion not found!" diff --git a/Telegram/DeployMacWin.sh b/Telegram/DeployMacWin.sh index a62c5b23a..d9b4d70e0 100755 --- a/Telegram/DeployMacWin.sh +++ b/Telegram/DeployMacWin.sh @@ -1,5 +1,5 @@ -AppVersionStr=0.6.12 -AppVersion=6012 +AppVersion=`./Version.sh | awk -F " " '{print $1}'` +AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` if [ ! -f "./../Mac/Release/deploy/$AppVersionStr/tmacupd$AppVersion" ]; then echo "tmacupd$AppVersion not found!" diff --git a/Telegram/DeployWin.sh b/Telegram/DeployWin.sh index f020dfad1..63c767085 100644 --- a/Telegram/DeployWin.sh +++ b/Telegram/DeployWin.sh @@ -1,5 +1,5 @@ -AppVersionStr=0.6.12 -AppVersion=6012 +AppVersion=`./Version.sh | awk -F " " '{print $1}'` +AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` if [ ! -f "./../Win32/Deploy/deploy/$AppVersionStr/tupdate$AppVersion" ]; then echo "tupdate$AppVersion not found!" diff --git a/Telegram/PrepareLinux.sh b/Telegram/PrepareLinux.sh index c23dec9f7..54752ec74 100755 --- a/Telegram/PrepareLinux.sh +++ b/Telegram/PrepareLinux.sh @@ -1,5 +1,5 @@ -AppVersionStr=0.6.12 -AppVersion=6012 +AppVersion=`./Version.sh | awk -F " " '{print $1}'` +AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` if [ -d "./../Linux/Release/deploy/$AppVersionStr" ]; then echo "Deploy folder for version $AppVersionStr already exists!" diff --git a/Telegram/PrepareLinux32.sh b/Telegram/PrepareLinux32.sh index 5141fbf8e..ce532bc18 100755 --- a/Telegram/PrepareLinux32.sh +++ b/Telegram/PrepareLinux32.sh @@ -1,5 +1,5 @@ -AppVersionStr=0.6.12 -AppVersion=6012 +AppVersion=`./Version.sh | awk -F " " '{print $1}'` +AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` if [ -d "./../Linux/Release/deploy/$AppVersionStr" ]; then echo "Deploy folder for version $AppVersionStr already exists!" diff --git a/Telegram/PrepareMac.sh b/Telegram/PrepareMac.sh index 5bc207d64..ee89ea795 100755 --- a/Telegram/PrepareMac.sh +++ b/Telegram/PrepareMac.sh @@ -1,5 +1,5 @@ -AppVersionStr=0.6.12 -AppVersion=6012 +AppVersion=`./Version.sh | awk -F " " '{print $1}'` +AppVersionStr=`./Version.sh | awk -F " " '{print $2}'` echo "" echo "Preparing version $AppVersionStr.." diff --git a/Telegram/Version.sh b/Telegram/Version.sh new file mode 100755 index 000000000..c3d223748 --- /dev/null +++ b/Telegram/Version.sh @@ -0,0 +1,2 @@ +echo 6012 0.6.12 +