From b68ed20d47bec543be023183f49115a799615b58 Mon Sep 17 00:00:00 2001 From: Rezart Qelibari Date: Wed, 16 Feb 2022 21:26:49 +0100 Subject: [PATCH] Compare DEBUG variable as string instead of number --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 182f0e8..72ea384 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -22,7 +22,7 @@ function cloneZSHLibRepo() { } function isDebug() { - test "${DEBUG}" -eq 1 -o "${DEBUG}" = true + test "${DEBUG}" = true -o "${DEBUG}" = 1 } function main() {