From: Ward Vandewege Date: Tue, 7 Jan 2020 15:36:39 +0000 (-0500) Subject: Bugfix in run-deploy.sh: the run_command needs to return its output. X-Git-Url: https://git.arvados.org/arvados-dev.git/commitdiff_plain/7fd92565a8d75d19521ff5c20fafbb103f0a1a27 Bugfix in run-deploy.sh: the run_command needs to return its output. No issue # Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- diff --git a/jenkins/run-deploy.sh b/jenkins/run-deploy.sh index 9b1a2f4..bd30adf 100755 --- a/jenkins/run-deploy.sh +++ b/jenkins/run-deploy.sh @@ -257,6 +257,7 @@ function run_command() { ECODE=0 fi rm -f $TMP_FILE + echo $RESULT eval "$return_var=$ECODE" }