From 772361e3d4d1ed07f706bab4d8e3aae26e5a90f6 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 9 Jan 2022 21:13:14 -0300 Subject: [PATCH] Fix bug in debug() --- scripts/bootstrap.sh | 2 +- scripts/common.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 1e605e3..b3ae88d 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -34,7 +34,7 @@ checkParameters() { l) checkForDependencies "libnewt" setDialogBox "whiptail" - setDebugToFile false + setDebugToFile true ;; ?) printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG" diff --git a/scripts/common.sh b/scripts/common.sh index c573dd5..19c86e5 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -164,5 +164,5 @@ setDebugToFile() { } debug() { - [ $debugFlagToFile = true ] && tee -a CocoRice.log > /dev/null + [ -z ${debugFlagToFile+x} ] && [ $debugFlagToFile = true ] && tee -a CocoRice.log > /dev/null }