+fix use 'bash' instead of 'sh'
This commit is contained in:
parent
034a9fac1f
commit
28a960868b
|
@ -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;
|
Loading…
Reference in New Issue