From 635a5182bc3c9c204b9d2fe21e6eb86fb720662e Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Tue, 1 Aug 2023 16:21:02 +1000 Subject: [PATCH] Fixed a typo in the upload script --- Scripts/drone-static-upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/drone-static-upload.sh b/Scripts/drone-static-upload.sh index 260f8f9af..c7209b2ae 100755 --- a/Scripts/drone-static-upload.sh +++ b/Scripts/drone-static-upload.sh @@ -36,7 +36,7 @@ mkdir -p build if [ ! -d $prod_path ]; then cp -av $prod_path "$base" -else if [ ! -d $sim_path ]; then +elif [ ! -d $sim_path ]; then cp -av $sim_path "$base" else echo -e "\n\n\n\e[31;1mExpected a file to upload, found none\e[0m" >&2