From 5479143c15e765ccac3d5c895709a839787f1674 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Thu, 10 Jan 2019 09:39:55 +0100
Subject: [PATCH] [ci] Fix if clause on build.sh

---
 ci/build.sh | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ci/build.sh b/ci/build.sh
index 70978e2b..e4c6f18b 100755
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -74,7 +74,11 @@ run_cmd ${CONDA_ROOT}/bin/conda build "--python=${PYTHON_VERSION} --no-anaconda-
 
 # run git clean to clean everything that is not needed. This helps to keep the
 # disk usage on CI machines to minimum.
-if [ "$(uname -s)" == "Linux" ]; then _os="linux" else _os="osx"; fi
+if [ "$(uname -s)" == "Linux" ]; then
+  _os="linux"
+else
+  _os="osx"
+fi
 run_cmd git clean -ffdx \
     --exclude="miniconda.sh" \
     --exclude="miniconda/pkgs/*.tar.bz2" \
-- 
GitLab