From a966de13f166f844f48c33b06ed9b6df00da868b Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.anjos@idiap.ch>
Date: Tue, 24 Jan 2017 12:38:29 +0100
Subject: [PATCH] Support alternative branch download for tests

---
 gitlab/install.sh | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gitlab/install.sh b/gitlab/install.sh
index 8adb34b..09cf8e6 100755
--- a/gitlab/install.sh
+++ b/gitlab/install.sh
@@ -4,11 +4,18 @@
 # Installation script for our build tools
 
 if [ "${#}" -ne 1 ]; then
-  echo "usage: ${0} <ci-support-directory>"
+  echo "usage: ${0} <ci-support-directory> [<branch>]"
   echo "example: ${0} _ci"
+  echo "example: ${0} _ci staging"
   exit 1
 fi
 
+if [ -n "$2" ]; then
+  BRANCH=$2;
+else
+  BRANCH=master;
+fi
+
 
 # Functions for coloring echo commands
 log_info() {
@@ -34,7 +41,7 @@ run_cmd() {
 
 
 get_script() {
-  local url="https://gitlab.idiap.ch/bob/bob.admin/raw/master/gitlab/${2}"
+  local url="https://gitlab.idiap.ch/bob/bob.admin/raw/${BRANCH}/gitlab/${2}"
   local curlopt="--location --silent --show-error --output ${1}/${2}"
   if [ -e ${1}/${2} ]; then
     rm -f ${1}/${2}
-- 
GitLab