From a994e67ebf6f171ac48ad4f033a848e314c021ea Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sun, 3 Feb 2019 09:54:55 -0600 Subject: [PATCH] mc: fix isDebugging when not debugging --- minecraft-server/start-utils | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minecraft-server/start-utils b/minecraft-server/start-utils index 151cf05a..13a29971 100644 --- a/minecraft-server/start-utils +++ b/minecraft-server/start-utils @@ -28,7 +28,7 @@ function isTrue { } function isDebugging { - if [ ${DEBUG^^} = TRUE ]; then + if [[ ${DEBUG^^} = TRUE ]]; then return 0 else return 1