summaryrefslogtreecommitdiff
path: root/game_server/build.sh
diff options
context:
space:
mode:
authornatrixaeria <janng@gmx.de>2019-05-17 20:59:10 +0200
committernatrixaeria <janng@gmx.de>2019-05-17 20:59:10 +0200
commit921d023a7652be5b1232ac41aeb2646b5f83ceb5 (patch)
treea68af6379f51421a576bffa16f066b31895449ad /game_server/build.sh
parent2f9e5dfaac05538fdf4513569b4df6872ee85b89 (diff)
Add WebSocket server functionality
and a WebSocket javascript test suite
Diffstat (limited to 'game_server/build.sh')
-rwxr-xr-xgame_server/build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/game_server/build.sh b/game_server/build.sh
index 5929e29..1eb61a1 100755
--- a/game_server/build.sh
+++ b/game_server/build.sh
@@ -2,9 +2,9 @@
case $1 in
("")
- if rustup run nightly cargo --color always build; then
+ if rustup run stable cargo --color always build; then
echo build success!
- RUST_LOG=info target/debug/game-server
+ RUST_LOG=debug target/debug/game-server
else
echo build failed!
fi
@@ -13,7 +13,7 @@ case $1 in
sh build.sh &> err && cat err | tac
;;
-c)
- rustup run nightly cargo clean
+ rustup run stable cargo clean
;;
*)
echo invalid argument