Skip to content

Commit 675772a

Browse files
committed
manually invoke bash for Miniconda
1 parent d1b993c commit 675772a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common/install_conda.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ set -ex
55
# Anaconda
66
wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
77
chmod +x Miniconda3-latest-Linux-x86_64.sh
8-
./Miniconda3-latest-Linux-x86_64.sh -b -p /opt/conda
8+
# NB: Manually invoke bash per https://github.com/conda/conda/issues/10431
9+
bash ./Miniconda3-latest-Linux-x86_64.sh -b -p /opt/conda
910
rm Miniconda3-latest-Linux-x86_64.sh
1011
export PATH=/opt/conda/bin:$PATH
1112
conda install -y conda-build anaconda-client git ninja

0 commit comments

Comments
 (0)