Remove double dash from suffix

This commit is contained in:
Morgan Pretty 2023-08-02 10:36:40 +10:00
parent ae0597a50f
commit 0ac7f7b339
1 changed files with 2 additions and 2 deletions

View File

@ -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