CSIT-1110: Integrate anomaly detection into PAL
[csit.git] / resources / tools / presentation / run_cpta.sh
index 233e8df..15a144d 100755 (executable)
@@ -1,6 +1,8 @@
 #!/bin/bash
 
-set +x
+set -x
+
+( cd new ; ./run_cpta.sh )
 
 # set default values in config array
 typeset -A DIR
@@ -12,10 +14,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]}
 
@@ -28,10 +26,13 @@ pip install -r requirements.txt
 
 export PYTHONPATH=`pwd`
 
-python pal.py \
+STATUS=$(python pal.py \
     --specification specification_CPTA.yaml \
     --logging INFO \
-    --force
+    --force)
+RETURN_STATUS=$?
+
+mv new/_build _build/new
 
-RETURN_STATUS=$(echo $?)
+echo ${STATUS}
 exit ${RETURN_STATUS}