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
+1 -1
View File
@@ -28,7 +28,7 @@ function isTrue {
} }
function isDebugging { function isDebugging {
if [ ${DEBUG^^} = TRUE ]; then if [[ ${DEBUG^^} = TRUE ]]; then
return 0 return 0
else else
return 1 return 1