Accept yes/no for boolean environment variables (#2893)

This commit is contained in:
Kian Kasad 2024-06-13 05:46:16 -07:00 committed by GitHub
parent bc789202a1
commit cafb80eec3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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