mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 06:14:14 +00:00
Accept yes/no for boolean environment variables (#2893)
This commit is contained in:
parent
bc789202a1
commit
cafb80eec3
1 changed files with 3 additions and 3 deletions
|
@ -64,7 +64,7 @@ function getFilenameFromUrl() {
|
|||
|
||||
function isTrue() {
|
||||
case "${1,,}" in
|
||||
true | on | 1)
|
||||
true | yes | on | 1)
|
||||
return 0
|
||||
;;
|
||||
*)
|
||||
|
@ -75,7 +75,7 @@ function isTrue() {
|
|||
|
||||
function isFalse() {
|
||||
case "${1,,}" in
|
||||
false | off | 0)
|
||||
false | no | off | 0)
|
||||
return 0
|
||||
;;
|
||||
*)
|
||||
|
@ -345,4 +345,4 @@ function ensureRemoveAllModsOff() {
|
|||
log "WARNING using REMOVE_OLDS_MODS interferes with $reason -- it is now disabled"
|
||||
REMOVE_OLD_MODS=false
|
||||
fi
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue