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.
This commit is contained in:
aka That Davin Guy 2022-07-05 23:43:52 -04:00 committed by GitHub
parent 5814883949
commit f12a9ac5e2

View File

@ -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