From 5d51a149c5352941444cb4e28492959b7763a07f Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Wed, 22 Jul 2020 16:19:49 -0400 Subject: [PATCH] Set -x so that we can see where script fails Because we have `set -e` configured if the shell script fails on a command that doesn't print out any details we may be lost as to when / where failure occurs, set -x so that we can trace where the script ended. Change-Id: Ied07ca2c9fbd45b7e770688ca61f30231586b216 Signed-off-by: Thanh Ha --- jjb/integration/multipatch-distribution.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jjb/integration/multipatch-distribution.sh b/jjb/integration/multipatch-distribution.sh index 55ce2b866..fd0684cfa 100755 --- a/jjb/integration/multipatch-distribution.sh +++ b/jjb/integration/multipatch-distribution.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -e +set -ex # create a fresh empty place to build this custom distribution BUILD_DIR=${WORKSPACE}/patch_tester -- 2.36.6