Skip to content

Instantly share code, notes, and snippets.

@flenter
Last active August 29, 2015 14:27
Show Gist options
  • Save flenter/1a60ff187312d16279ec to your computer and use it in GitHub Desktop.
Save flenter/1a60ff187312d16279ec to your computer and use it in GitHub Desktop.
sample indentation
box: nodejs
build:
steps:
# Correct way of indenting
- script:
name: works
code: |
echo "more indentation"
box: nodejs
build:
steps:
# indentation below no longer allowed ||
# indentation below no longer allowed VV
- script:
name: fails
code: |
echo "won't succeed"
# indentation below is correct ||
# indentation below is correct VV
- script:
name: works
code: |
echo "more indentation"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment