diff options
author | Rene Rivera <grafikrobot@gmail.com> | 2016-07-14 22:20:20 -0500 |
---|---|---|
committer | Rene Rivera <grafikrobot@gmail.com> | 2016-07-14 22:20:20 -0500 |
commit | 3a43467f85c5d2045c9ffde3f8119d9892a51ba8 (patch) | |
tree | 4610121166eab70cb4e145a9dfaef1fbf3f5dca8 /circle.yml | |
parent | e5f95a2ff408e2cb60f0d9eb9be6529a9c57885c (diff) | |
download | boost-3a43467f85c5d2045c9ffde3f8119d9892a51ba8.tar.gz |
[circleci] Use Bash as its the one with array vars.
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/circle.yml b/circle.yml index ee1fce8ad4..30b12feada 100644 --- a/circle.yml +++ b/circle.yml @@ -16,7 +16,7 @@ machine: wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_library_check.py" -P ${HOME} wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_release.py" -P ${HOME} wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_status.py" -P ${HOME} - echo '#!/bin/sh' > ${HOME}/script.sh + echo '#!/bin/bash' > ${HOME}/script.sh echo 'export SCRIPT_N=(${SCRIPT_N})' >> "${HOME}/script.sh" echo 'export SCRIPT=${SCRIPT_N[$CIRCLE_NODE_INDEX]}' >> "${HOME}/script.sh" echo 'export EOL_N=(${EOL_N})' >> "${HOME}/script.sh" |