Fixed build helper script.

This commit is contained in:
Martin Edenhofer 2016-05-27 10:16:47 +02:00
parent 17cbac8c39
commit 249caa122a
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ if [ -f $SERVER_PID ]; then
kill -9 $(cat $SERVER_PID)
fi
if WITH_DB; then
if test $WITH_DB -eq 1; then
script/build/test_cleanup.sh
fi

View file

@ -4,7 +4,7 @@ APP_PORT=$2
WS_PORT=$3
WITH_DB=$4 || 0
if WITH_DB; then
if test $WITH_DB -eq 1; then
script/bootstrap.sh
fi