Created
September 19, 2021 09:54
-
-
Save majirosstefan/2acee52c9aa2367cc4e664ac86a4a76e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -z ${RUN_E2E_TESTS+x} ]; then | |
echo "E2E are not turned on for this build." | |
exit 0 // calling exit with 0 will skip further execution of script | |
// also, exit 1 is similar to exception | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment