Skip to content

Commit c7b61c5

Browse files
authored
Merge pull request #270 from proppy/fix-miniconda
ci/conda-get: use bash to run miniconda
2 parents abc4ad5 + eb694e8 commit c7b61c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/conda-get.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ else
2121
wget --progress=dot:giga -c https://repo.continuum.io/miniconda/Miniconda3-latest-${sys_name}-x86_64.sh
2222
chmod a+x Miniconda3-latest-${sys_name}-x86_64.sh
2323
if [ ! -d $CONDA_PATH -o ! -z "$CI" ]; then
24-
./Miniconda3-latest-${sys_name}-x86_64.sh -p $CONDA_PATH -b -f
24+
bash Miniconda3-latest-${sys_name}-x86_64.sh -p $CONDA_PATH -b -f
2525
fi
2626
export PATH=$CONDA_PATH/bin:$PATH
2727
fi

0 commit comments

Comments
 (0)