CSIT-1110: Integrate anomaly detection into PAL
[csit.git] / resources / tools / presentation / run_cpta.sh
index 081becf..15a144d 100755 (executable)
@@ -2,6 +2,8 @@
 
 set -x
 
+( cd new ; ./run_cpta.sh )
+
 # set default values in config array
 typeset -A DIR
 
@@ -24,13 +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=$?
 
-rm -rf ${DIR[WORKING]}
+mv new/_build _build/new
 
-echo ${RETURN_STATUS}
+echo ${STATUS}
 exit ${RETURN_STATUS}