Ignore case for boolean vars

This commit is contained in:
Alexey Pustovalov
2021-04-11 21:43:41 -04:00
parent fe57f5c5e0
commit d4bae351e8
30 changed files with 168 additions and 144 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