Skip to content

Commit

Permalink
Fixed build helper script.
Browse files Browse the repository at this point in the history
  • Loading branch information
martini committed May 27, 2016
1 parent 17cbac8 commit 249caa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/build/test_shutdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion script/build/test_startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 249caa1

Please sign in to comment.