appveyor: Fix not going back when exiting earlier
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
This commit is contained in:
parent
60f21e0279
commit
cbdba450b5
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue