From: Elias Fleckenstein Date: Sat, 20 Feb 2021 14:55:10 +0000 (+0100) Subject: Correct case statements in scripts X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=10286954af5a299ed3ce3a769437f5989ce0e559;p=elidragon_v2.git Correct case statements in scripts --- diff --git a/scripts/start.sh b/scripts/start.sh index 17a7053..55d5e28 100755 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -5,7 +5,7 @@ source source scripts/common.sh case $1 in - "--all" + "--all") start_mapserver start_multiserver loop_worlds start_world diff --git a/scripts/stop.sh b/scripts/stop.sh index b4a48bf..501eb05 100755 --- a/scripts/stop.sh +++ b/scripts/stop.sh @@ -5,7 +5,7 @@ source source scripts/common.sh case $1 in - "--all" + "--all") stop_mapserver stop_multiserver loop_worlds stop_world