mirror of
https://github.com/evennia/evennia.git
synced 2025-10-29 19:35:56 +00:00
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:
parent
5814883949
commit
f12a9ac5e2
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user