From cbdba450b584a040e36f35bf52e354ccc8a159fc Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Wed, 8 Feb 2023 07:05:12 +0000 Subject: [PATCH] appveyor: Fix not going back when exiting earlier --- appveyor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 214f213..b763eba 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -59,6 +59,7 @@ build_script: if [ $? -eq 0 ] ; then echo "Skipping $f since $CURR_NAME already exists"; + cd .. continue; fi @@ -73,6 +74,7 @@ build_script: if [ $CHECK -ne 0 ]; then echo "Command failed with error code $CHECK" SUCCESS=0; + cd .. continue; fi; @@ -91,6 +93,7 @@ build_script: if [ $CHECK -ne 0 ]; then echo "Command failed with error code $CHECK" SUCCESS=0; + cd .. continue; fi; RELEASE_ID=$(echo $RELEASE_RESULT | jq -r .id) @@ -104,6 +107,7 @@ build_script: if [ $CHECK -ne 0 ]; then echo "Command failed with error code $CHECK" SUCCESS=0; + cd .. continue; fi;