We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4e8b5 commit b72ec7cCopy full SHA for b72ec7c
.circleci/docker/common/install_conda.sh
@@ -42,8 +42,8 @@ if [ -n "$ANACONDA_PYTHON_VERSION" ]; then
42
43
pushd /tmp
44
wget -q "${BASE_URL}/${CONDA_FILE}"
45
- chmod +x "${CONDA_FILE}"
46
- as_jenkins ./"${CONDA_FILE}" -b -f -p "/opt/conda"
+ # NB: Manually invoke bash per https://github.com/conda/conda/issues/10431
+ as_jenkins bash "${CONDA_FILE}" -b -f -p "/opt/conda"
47
popd
48
49
# NB: Don't do this, rely on the rpath to get it right
0 commit comments