appveyor: Fix not going back when exiting earlier
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
Jonatan Nilsson 2023-02-08 07:05:12 +00:00
parent 60f21e0279
commit cbdba450b5

View file

@ -59,6 +59,7 @@ build_script:
if [ $? -eq 0 ] ; then if [ $? -eq 0 ] ; then
echo "Skipping $f since $CURR_NAME already exists"; echo "Skipping $f since $CURR_NAME already exists";
cd ..
continue; continue;
fi fi
@ -73,6 +74,7 @@ build_script:
if [ $CHECK -ne 0 ]; then if [ $CHECK -ne 0 ]; then
echo "Command failed with error code $CHECK" echo "Command failed with error code $CHECK"
SUCCESS=0; SUCCESS=0;
cd ..
continue; continue;
fi; fi;
@ -91,6 +93,7 @@ build_script:
if [ $CHECK -ne 0 ]; then if [ $CHECK -ne 0 ]; then
echo "Command failed with error code $CHECK" echo "Command failed with error code $CHECK"
SUCCESS=0; SUCCESS=0;
cd ..
continue; continue;
fi; fi;
RELEASE_ID=$(echo $RELEASE_RESULT | jq -r .id) RELEASE_ID=$(echo $RELEASE_RESULT | jq -r .id)
@ -104,6 +107,7 @@ build_script:
if [ $CHECK -ne 0 ]; then if [ $CHECK -ne 0 ]; then
echo "Command failed with error code $CHECK" echo "Command failed with error code $CHECK"
SUCCESS=0; SUCCESS=0;
cd ..
continue; continue;
fi; fi;