Fix deploy scripts for Windows on ARM.

This commit is contained in:
John Preston 2024-11-06 16:41:56 +04:00
parent 1eeb46d5fc
commit 9c3990c0c1

View file

@ -70,9 +70,9 @@ else
DeployMac="1" DeployMac="1"
DeployWin="1" DeployWin="1"
DeployWin64="1" DeployWin64="1"
DeployWinArm="0" DeployWinArm="1"
DeployLinux="1" DeployLinux="1"
echo "Deploying four versions of $AppVersionStrFull: for Windows 32 bit, Windows 64 bit, macOS and Linux 64 bit.." echo "Deploying five versions of $AppVersionStrFull: for Windows 32 bit / 64 bit / on ARM, macOS and Linux 64 bit.."
fi fi
if [ "$BuildTarget" == "mac" ]; then if [ "$BuildTarget" == "mac" ]; then
BackupPath="$HOME/Projects/backup/tdesktop" BackupPath="$HOME/Projects/backup/tdesktop"
@ -102,7 +102,7 @@ Win64RemoteFolder="tx64"
WinArmDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tarm64" WinArmDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tarm64"
WinArmUpdateFile="tarm64upd$AppVersion" WinArmUpdateFile="tarm64upd$AppVersion"
WinArmSetupFile="tsetup-arm64.$AppVersionStrFull.exe" WinArmSetupFile="tsetup-arm64.$AppVersionStrFull.exe"
WinArmPortablefile="tportable-arm64.$AppVersionStrFull.zip" WinArmPortableFile="tportable-arm64.$AppVersionStrFull.zip"
WinArmRemoteFolder="tarm64" WinArmRemoteFolder="tarm64"
LinuxDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tlinux" LinuxDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tlinux"
LinuxUpdateFile="tlinuxupd$AppVersion" LinuxUpdateFile="tlinuxupd$AppVersion"
@ -138,7 +138,7 @@ if [ "$AlphaVersion" != "0" ]; then
Win64UpdateFile="${Win64UpdateFile}_${AlphaSignature}" Win64UpdateFile="${Win64UpdateFile}_${AlphaSignature}"
Win64PortableFile="talpha${AlphaVersion}_${AlphaSignature}.zip" Win64PortableFile="talpha${AlphaVersion}_${AlphaSignature}.zip"
WinArmUpdateFile="${WinArmUpdateFile}_${AlphaSignature}" WinArmUpdateFile="${WinArmUpdateFile}_${AlphaSignature}"
WinArmPortablefile="talpha${AlphaVersion}_${AlphaSignature}.zip" WinArmPortableFile="talpha${AlphaVersion}_${AlphaSignature}.zip"
LinuxUpdateFile="${LinuxUpdateFile}_${AlphaSignature}" LinuxUpdateFile="${LinuxUpdateFile}_${AlphaSignature}"
LinuxSetupFile="talpha${AlphaVersion}_${AlphaSignature}.tar.xz" LinuxSetupFile="talpha${AlphaVersion}_${AlphaSignature}.tar.xz"
fi fi