From: Tibor Frank Date: Mon, 26 Mar 2018 06:25:30 +0000 (+0200) Subject: CSIT-919: Jenkons job X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=806d2bf874f34d80e92c700652f226359402b1e8 CSIT-919: Jenkons job - return correct return value Change-Id: I761593b90336ef3926e157c068982713ea3fe71f Signed-off-by: Tibor Frank --- diff --git a/resources/tools/presentation/run_cpta.sh b/resources/tools/presentation/run_cpta.sh index 6ba962d778..081becfcbc 100755 --- a/resources/tools/presentation/run_cpta.sh +++ b/resources/tools/presentation/run_cpta.sh @@ -12,10 +12,6 @@ sudo apt-get -y update sudo apt-get -y install libxml2 libxml2-dev libxslt-dev build-essential \ zlib1g-dev unzip -# Clean-up when finished -trap 'rm -rf ${DIR[WORKING]}; exit' EXIT -trap 'rm -rf ${DIR[WORKING]}; exit' ERR - # Create working directories mkdir ${DIR[WORKING]} @@ -32,7 +28,9 @@ python pal.py \ --specification specification_CPTA.yaml \ --logging INFO \ --force - RETURN_STATUS=$? + +rm -rf ${DIR[WORKING]} + echo ${RETURN_STATUS} exit ${RETURN_STATUS}