diff options
author | Rene Rivera <grafikrobot@gmail.com> | 2016-06-22 11:44:58 -0500 |
---|---|---|
committer | Rene Rivera <grafikrobot@gmail.com> | 2016-06-22 11:44:58 -0500 |
commit | 94231fb0ecc6328d33958ff9be1b563f2482fc36 (patch) | |
tree | 96ed844033b03e4808abd9c9802170afe83fdafb /circle.yml | |
parent | 3b925b18edc3dbacde7bfe2757abea14e5edd152 (diff) | |
download | boost-94231fb0ecc6328d33958ff9be1b563f2482fc36.tar.gz |
Env vars are not available on machine_pre for CircleCI. So we need to
use the script name directly.
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 8828b1d2c4..99a7c99935 100644 --- a/circle.yml +++ b/circle.yml @@ -9,7 +9,7 @@ machine: SCRIPT: ci_boost_status pre: - wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_common.py" -P ${HOME} - - wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/${SCRIPT}.py" -P ${HOME} + - wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_status.py" -P ${HOME} post: - python "${HOME}/${SCRIPT}" machine_post checkout: |