From 2bd6d6264a43c1bb047c3732b19387c0a00aa99b Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 19 Jan 2022 00:50:57 -0300 Subject: [PATCH] Fix bug in debug() --- scripts/common.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index 2dcc0a1..96b2b35 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -175,5 +175,9 @@ setLogToFile() { } debug() { - [[ -n $logToFile && $logToFile = true ]] && tee -a "$logFolder/sadedot.log" > /dev/null + if [[ -n $logToFile && $logToFile = true ]]; then + tee -a "$logFolder/sadedot.log" > /dev/null + else + tee > /dev/null + fi }