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="$@"
|
cmd="$@"
|
||||||
output="Docker starting with argument '$cmd' ..."
|
output="Docker starting with argument '$cmd' ..."
|
||||||
if test -z $cmd; then
|
if test -z "$cmd"; then
|
||||||
cmd="bash"
|
cmd="bash"
|
||||||
output="No argument given, starting shell ..."
|
output="No argument given, starting shell ..."
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue