From f12a9ac5e21f5f00efa0fe2090f7218ff2380245 Mon Sep 17 00:00:00 2001 From: aka That Davin Guy Date: Tue, 5 Jul 2022 23:43:52 -0400 Subject: [PATCH] Update evennia-docker-start.sh Fixed an unquoted shell test. This was generating a "sh: start: unknown operand" message in the startup log when the default "evennia start --log" args were passed in. --- bin/unix/evennia-docker-start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/unix/evennia-docker-start.sh b/bin/unix/evennia-docker-start.sh index 5c87052da9..2f4c6033b7 100755 --- a/bin/unix/evennia-docker-start.sh +++ b/bin/unix/evennia-docker-start.sh @@ -9,7 +9,7 @@ PS1="evennia|docker \w $ " cmd="$@" output="Docker starting with argument '$cmd' ..." -if test -z $cmd; then +if test -z "$cmd"; then cmd="bash" output="No argument given, starting shell ..." fi