+fix use 'bash' instead of 'sh'

This commit is contained in:
xdrm-brackets 2018-02-19 21:40:05 +01:00
parent 034a9fac1f
commit 28a960868b
1 changed files with 2 additions and 2 deletions

View File

@ -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;