From 38cb4ac927272256b636c014a9aec1a119958fb6 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Sun, 15 May 2016 18:19:47 +0000 Subject: [PATCH] Added check if trisurf executable exists in path, ETA is empty or N/A at appropriate moments, PID is empty if stopped, fix in getPID (some pythons like str some functions ) ;) --- bin/trisurf-deploy | 18 ++++++++++-------- 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/bin/trisurf-deploy b/bin/trisurf-deploy index 3bd3b15..06b54da 100755 --- a/bin/trisurf-deploy +++ b/bin/trisurf-deploy @@ -18,7 +18,7 @@ #subdirectory structure function subdir() { - exit 0; + echo "ABC"; } @@ -26,17 +26,19 @@ declare tape_no=${#tapes[@]} for i in `seq 1 $tape_no`; do - echo "trisurf -t ${tapes[i-1]} -d $directory/subdir($i) -o ${tape_overrides[i-1]} ${extra_options[i-1]}" + declare sdir=$(subdir) + declare dir_struct="$directory/$sdir" +#if doesnt exist + echo "mkdir $dir_struct" +#if doesnt exist + echo "cp ${tapes[i-1]} $dir_struct" + + + echo "trisurf -t ${tapes[i-1]} -d $dir_struct -o ${tape_overrides[i-1]} ${extra_options[i-1]}" done; #Functions required for operation - - - - - - echo "Deploying configuration of trisurf" -- Gitblit v1.9.3