From 642f8276d15340dda92b5b32f018e0e57e9ef836 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 26 Jan 2017 06:30:45 +0100 Subject: [PATCH] Fix exit code --- gitlab/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/functions.sh b/gitlab/functions.sh index 6e8dcde..f0264be 100644 --- a/gitlab/functions.sh +++ b/gitlab/functions.sh @@ -171,7 +171,7 @@ doc_upload() { else log_error "Curl command finished with an error condition (code=${code}):" curl --location --silent --user "${DOCUSER}:${DOCPASS}" --upload-file ${1} ${DOCSERVER}/${2} - exit ${status} + exit ${code} fi } -- GitLab