From f65050b02fa06b429dc98ad6e959ef03adc7d25b Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.anjos@idiap.ch>
Date: Fri, 23 Sep 2016 12:20:14 +0200
Subject: [PATCH] Keep curl silent

---
 gitlab/functions.sh | 2 +-
 gitlab/install.sh   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gitlab/functions.sh b/gitlab/functions.sh
index e4e0ad8..9a168ef 100644
--- a/gitlab/functions.sh
+++ b/gitlab/functions.sh
@@ -95,7 +95,7 @@ doc_upload() {
   check_pass DOCUSER
   check_pass DOCPASS
   log_info "${1} -> ${DOCSERVER}/${2}, via curl..."
-  curl --location --silent --user "${DOCUSER}:${DOCPASS}" --upload-file ${1} ${DOCSERVER}/${2}
+  curl --location --silent --show-error --user "${DOCUSER}:${DOCPASS}" --upload-file ${1} ${DOCSERVER}/${2}
   local status=$?
   if [ ${status} != 0 ]; then
     log_error "Curl command finished with an error condition (status=${status})"
diff --git a/gitlab/install.sh b/gitlab/install.sh
index fa0b05f..6346184 100755
--- a/gitlab/install.sh
+++ b/gitlab/install.sh
@@ -34,7 +34,7 @@ run_cmd() {
 
 
 get_script() {
-  local curlopt="--location --output ${1}/${2}"
+  local curlopt="--location --silent --show-error --output ${1}/${2}"
   if [ -e ${1}/${2} ]; then #check for updates
     local checkopt="${curlopt} --time-cond ${1}/${2} --silent"
     checkopt="${checkopt} --write-out %{http_code}"
-- 
GitLab