From c11b9dc9d7b60783ce12d302c4792ce9c2c7b402 Mon Sep 17 00:00:00 2001 From: Igor Shadurin Date: Sun, 8 Oct 2023 13:43:07 +0300 Subject: [PATCH] fix: double quote array expansions to avoid re-splitting elements --- Wallet/build/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wallet/build/deploy.sh b/Wallet/build/deploy.sh index 8231aab..43fe8fc 100755 --- a/Wallet/build/deploy.sh +++ b/Wallet/build/deploy.sh @@ -138,7 +138,7 @@ if [ "$DeployLinux32" == "1" ]; then Files+=("linux32/$Linux32UpdateFile" "linux32/$Linux32SetupFile") fi cd $DeployPath -rsync -avR --progress ${Files[@]} "wallet:wallet-updates" +rsync -avR --progress "${Files[@]}" "wallet:wallet-updates" echo "Version $AppVersionStrFull was deployed!" cd $FullExecPath