Skip to content
Snippets Groups Projects
Commit db7b2930 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[ci] Fix else clause on bootstrap.sh

parent c1d2955c
No related branches found
No related tags found
No related merge requests found
Pipeline #25798 failed
......@@ -65,7 +65,11 @@ install_miniconda() {
if [ ! -e miniconda.sh ]; then
log_info "Downloading latest miniconda3 installer..."
# downloads the latest conda installation script
if [ "$(uname -s)" == "Linux" ]; then _os="Linux" else _os="MacOSX"; fi
if [ "$(uname -s)" == "Linux" ]; then
_os="Linux"
else
_os="MacOSX"
fi
obj=https://repo.continuum.io/miniconda/Miniconda3-latest-${_os}-x86_64.sh
run_cmd curl --silent --output miniconda.sh ${obj}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment