Ignore case for boolean vars

This commit is contained in:
Alexey Pustovalov
2021-04-13 07:34:31 -04:00
37 changed files with 325 additions and 234 deletions

View File

@ -5,7 +5,7 @@ set -o pipefail
set +e
# Script trace mode
if [ "${DEBUG_MODE}" == "true" ]; then
if [ "${DEBUG_MODE,,}" == "true" ]; then
set -o xtrace
fi