From 7d6233aa7df2e640e623a774b7e4489daacb98e0 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.anjos@idiap.ch>
Date: Tue, 6 Sep 2016 15:08:41 +0200
Subject: [PATCH] Fix bootstrapping script

---
 bootstrap-conda.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bootstrap-conda.sh b/bootstrap-conda.sh
index b8ec88e..ac08f5c 100755
--- a/bootstrap-conda.sh
+++ b/bootstrap-conda.sh
@@ -39,9 +39,10 @@ run_cmd() {
 
 # Clones the conda dev environment to use
 if [ ! -d ${PREFIX} ]; then
-  echo "[++] Bootstrapping (clone) conda installation at ${PREFIX}..."
+  echo "[++] Downloading environment list into file \`env.txt'..."
   pyver=$(echo ${PYTHON_VERSION} | tr -d '.')
-  run_cmd curl --silent https://gitlab.idiap.ch/bob/bob.admin/raw/master/${ARCH}/devel-py${pyver}.txt > env.txt
+  curl --silent https://gitlab.idiap.ch/bob/bob.admin/raw/master/${ARCH}/devel-py${pyver}.txt > env.txt
+  echo "[++] Bootstrapping conda installation at ${PREFIX}..."
   run_cmd ${CONDA_FOLDER}/bin/conda create --prefix ${PREFIX} --file env.txt --yes
   run_cmd ${CONDA_FOLDER}/bin/conda clean --lock
 else
-- 
GitLab