summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dimov <pdimov@gmail.com>2019-03-04 04:11:11 +0200
committerPeter Dimov <pdimov@gmail.com>2019-03-04 04:11:11 +0200
commitd0a24e5d002f7bbef4affe3db699202259775c5f (patch)
treed13fd4e7154389f07d3e231408cd25633b081c0a
parent4f6835aa3bf1e5030f4ad8c4e349dad2a5f78f3e (diff)
downloadboost-circle2.tar.gz
Fix conditions to have the correct return codecircle2
-rw-r--r--.circleci/config.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index fb3183b781..e2b6d24a80 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'