From de206ece91bfe7b23d11172c2a56af58b0a389ad Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 9 Jan 2022 21:35:14 -0300 Subject: [PATCH] Update debug() --- scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index fdb888e..54b8659 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -164,5 +164,5 @@ setDebugToFile() { } debug() { - [ -n ${debugFlagToFile+x} ] && [ $debugFlagToFile = true ] && tee -a CocoRice.log > /dev/null + [[ -z ${debugFlagToFile+x} || $debugFlagToFile = true ]] && tee -a CocoRice.log > /dev/null }