Commit 5495166b authored by Mark Pundsack's avatar Mark Pundsack

Clarify CI script needing to quote colons

parent 9fead2b8
......@@ -379,6 +379,8 @@ job:
- bundle exec rspec
```
Sometimes, `script` commands will need to be wrapped in single or double quotes. For example, commands that contain a colon (`:`) need to be wrapped in quotes so that the YAML parser knows to interpret the whole thing as a string rather than a "key: value" pair. Be careful when using special characters (`:`, `{`, `}`, `[`, `]`, `,`, `&`, `*`, `#`, `?`, `|`, `-`, `<`, `>`, `=`, `!`, `%`, `@`, `\``).
### stage
`stage` allows to group build into different stages. Builds of the same `stage`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment