diff --git a/README.md b/README.md index 89c87ae..d3defc4 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,8 @@ sh scripts/bootstrap.sh -d ``` to use dialog. +Finally, you can run the script with `-f` if you want to print the log in the CocoRice.log file. + ## Dependencies You must install `libnewt` or `dialog`. diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 7775069..6fbc4df 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -6,7 +6,7 @@ usage: ${0##*/} [command] -h Print this help message. -w Use whiptail. -d Use dialog. - -f Debug to CocoRice.log file. + -l Log to CocoRice.log file. EOF } @@ -31,7 +31,7 @@ checkParameters() { checkForDependencies "dialog" setDialogBox "dialog" ;; - f) + l) checkForDependencies "libnewt" setDialogBox "whiptail" setDebugToFile false