From 28a960868b80e0aa6e49681f9399640ea5a3418a Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Mon, 19 Feb 2018 21:40:05 +0100 Subject: [PATCH] +fix use 'bash' instead of 'sh' --- metactl/pre-start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metactl/pre-start.sh b/metactl/pre-start.sh index 807ecfe..8f3d628 100644 --- a/metactl/pre-start.sh +++ b/metactl/pre-start.sh @@ -25,12 +25,12 @@ chmod o+rwx `dirname $ROOT`/virtual/ci/web; # 3. Create 'env' spy echo -ne " * Launch 'env' spy.........."; -( sh $ROOT/ci/env.sh )& +( bash $ROOT/ci/env.sh )& echo "launched"; echo -n "$!" > $ROOT/ci/env.pid; # 3. Create 'web' spy echo -ne " * Launch 'web' spy.........."; -( sh $ROOT/ci/web.sh )& +( bash $ROOT/ci/web.sh )& echo "launched"; echo -n "$!" > $ROOT/ci/web.pid; \ No newline at end of file