From 806d2bf874f34d80e92c700652f226359402b1e8 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 26 Mar 2018 08:25:30 +0200 Subject: [PATCH] CSIT-919: Jenkons job - return correct return value Change-Id: I761593b90336ef3926e157c068982713ea3fe71f Signed-off-by: Tibor Frank --- resources/tools/presentation/run_cpta.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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} -- 2.16.6