From db7b2930c9eb429828fc4eb6e6edf6c550e6957e Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 10 Jan 2019 10:00:22 +0100 Subject: [PATCH] [ci] Fix else clause on bootstrap.sh --- ci/bootstrap.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci/bootstrap.sh b/ci/bootstrap.sh index b88688f6..bf61ad9b 100755 --- a/ci/bootstrap.sh +++ b/ci/bootstrap.sh @@ -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 -- GitLab