mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue