summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dimov <pdimov@gmail.com>2019-03-04 03:57:41 +0200
committerPeter Dimov <pdimov@gmail.com>2019-03-04 03:57:41 +0200
commit4f6835aa3bf1e5030f4ad8c4e349dad2a5f78f3e (patch)
treeca1a790150501ae296e4963a9af34de09356b39e
parent203ed916bb29848aa9c51d46397b006c9fc22719 (diff)
downloadboost-4f6835aa3bf1e5030f4ad8c4e349dad2a5f78f3e.tar.gz
Quote command strings for yaml
-rw-r--r--.circleci/config.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index db3dc0d360..fb3183b781 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -10,5 +10,5 @@ jobs:
- run: wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_release.py" -P ${HOME}
- run: python ${HOME}/ci_boost_release.py checkout_post
- run: python ${HOME}/ci_boost_release.py dependencies_override
- - run: [ "$CIRCLE_NODE_INDEX" == "0" ] && EOL=LF python ${HOME}/ci_boost_release.py test_override
- - run: [ "$CIRCLE_NODE_INDEX" == "1" ] && EOL=CRLF python ${HOME}/ci_boost_release.py test_override
+ - run: '[ "$CIRCLE_NODE_INDEX" == "0" ] && EOL=LF python ${HOME}/ci_boost_release.py test_override'
+ - run: '[ "$CIRCLE_NODE_INDEX" == "1" ] && EOL=CRLF python ${HOME}/ci_boost_release.py test_override'