From 0ac7f7b3394e8fdf62bab6bacb637c04dc0fc40b Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Wed, 2 Aug 2023 10:36:40 +1000 Subject: [PATCH] Remove double dash from suffix --- Scripts/drone-static-upload.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/drone-static-upload.sh b/Scripts/drone-static-upload.sh index 99a03db85..681e58994 100755 --- a/Scripts/drone-static-upload.sh +++ b/Scripts/drone-static-upload.sh @@ -23,10 +23,10 @@ sim_path="build/Session_sim.xcarchive/Products/Applications/Session.app" # Validate the paths exist if [ -d $prod_path ]; then - suffix="-store" + suffix="store" target_path=$prod_path elif [ -d $sim_path ]; then - suffix="-sim" + suffix="sim" target_path=$sim_path else echo -e "\n\n\n\e[31;1mExpected a file to upload, found none\e[0m" >&2