From 234722a2f5c2a5f90629a492e60a14471170b4e1 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 9 Jan 2022 20:54:00 -0300 Subject: [PATCH] Add debug to file --- scripts/bootstrap.sh | 6 ++++++ scripts/common.sh | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 8561ac6..9f2fdce 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -6,6 +6,7 @@ usage: ${0##*/} [command] -h Print this help message. -w Use whiptail. -d Use dialog. + -f Debug to CocoRice.log EOF } @@ -30,6 +31,11 @@ checkParameters() { checkForDependencies "dialog" setDialogBox "dialog" ;; + f) + checkForDependencies "libnewt" + setDialogBox "whiptail" + setDebugToFile false + ;; ?) printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG" exit 1 diff --git a/scripts/common.sh b/scripts/common.sh index af6aec7..c573dd5 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -158,3 +158,11 @@ calcHeightDialog() { setDialogBox() { export dialogBox=${1} } + +setDebugToFile() { + export debugFlagToFile=${1} +} + +debug() { + [ $debugFlagToFile = true ] && tee -a CocoRice.log > /dev/null +}