Fixed build helper script.
This commit is contained in:
parent
17cbac8c39
commit
249caa122a
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ if [ -f $SERVER_PID ]; then
|
||||||
kill -9 $(cat $SERVER_PID)
|
kill -9 $(cat $SERVER_PID)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if WITH_DB; then
|
if test $WITH_DB -eq 1; then
|
||||||
script/build/test_cleanup.sh
|
script/build/test_cleanup.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ APP_PORT=$2
|
||||||
WS_PORT=$3
|
WS_PORT=$3
|
||||||
WITH_DB=$4 || 0
|
WITH_DB=$4 || 0
|
||||||
|
|
||||||
if WITH_DB; then
|
if test $WITH_DB -eq 1; then
|
||||||
script/bootstrap.sh
|
script/bootstrap.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue