Commit 47ae49a6 authored by Willi Rath's avatar Willi Rath
Browse files

Use curl because wget might not be available on Mac

parent 6bb3154b
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,8 +21,8 @@ echo "... installing in " ${target_dir}

# download miniconda
installer=/tmp/${time_stamp}_miniconda3.sh
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh \
    -O ${installer}
curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh \
    -o ${installer}

# install miniconda and clean up
bash ${installer} -b -p ${target_dir}