Created
July 16, 2014 13:25
-
-
Save hatchan/9948b3e3b2e579ccd570 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
build: | |
steps: | |
- script: | |
name: step | |
code: > | |
if [ true ]; then | |
echo "true"; | |
fi | |
# The > operator removes all new lines and extra space | |
# the code parameter becomes: if [ true ]; then echo "true"; fi | |
# as opposed to using the | operator, which becomes: if [ true ];\n then echo "true";\n fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment