mc: fix isDebugging when not debugging

This commit is contained in:
Geoff Bourne 2019-02-03 09:54:55 -06:00
parent 57a840b069
commit a994e67ebf

View File

@ -28,7 +28,7 @@ function isTrue {
}
function isDebugging {
if [ ${DEBUG^^} = TRUE ]; then
if [[ ${DEBUG^^} = TRUE ]]; then
return 0
else
return 1