Created
October 23, 2013 22:02
-
-
Save andrewtheis/7127566 to your computer and use it in GitHub Desktop.
A way to execute bash scripts only for certain configuration and if that script exists
This file contains 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 [[ ${CONFIGURATION} == "Ad Hoc" && -f /var/xcode_ci_scripts/bump_and_tag.sh ]]; then | |
/var/xcode_ci_scripts/bump_and_tag.sh | |
else | |
echo "Skipping version bump" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment