Add debug to file
This commit is contained in:
parent
281fc830ae
commit
234722a2f5
|
@ -6,6 +6,7 @@ usage: ${0##*/} [command]
|
||||||
-h Print this help message.
|
-h Print this help message.
|
||||||
-w Use whiptail.
|
-w Use whiptail.
|
||||||
-d Use dialog.
|
-d Use dialog.
|
||||||
|
-f Debug to CocoRice.log
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,6 +31,11 @@ checkParameters() {
|
||||||
checkForDependencies "dialog"
|
checkForDependencies "dialog"
|
||||||
setDialogBox "dialog"
|
setDialogBox "dialog"
|
||||||
;;
|
;;
|
||||||
|
f)
|
||||||
|
checkForDependencies "libnewt"
|
||||||
|
setDialogBox "whiptail"
|
||||||
|
setDebugToFile false
|
||||||
|
;;
|
||||||
?)
|
?)
|
||||||
printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG"
|
printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -158,3 +158,11 @@ calcHeightDialog() {
|
||||||
setDialogBox() {
|
setDialogBox() {
|
||||||
export dialogBox=${1}
|
export dialogBox=${1}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setDebugToFile() {
|
||||||
|
export debugFlagToFile=${1}
|
||||||
|
}
|
||||||
|
|
||||||
|
debug() {
|
||||||
|
[ $debugFlagToFile = true ] && tee -a CocoRice.log > /dev/null
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue