From 6f1a89b0f9249d970d95ea5867070ff7214c58c3 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 27 Dec 2021 23:07:29 -0300 Subject: [PATCH] Follow styleguide --- scripts/bootstrap.sh | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 2d14816..e2b644e 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -18,14 +18,22 @@ checkParameters() { fi case $flag in - h) usage - exit 0 ;; - w) checkForDependencies "libnewt" - setDialogBox "whiptail" ;; - d) checkForDependencies "dialog" - setDialogBox "dialog" ;; - ?) printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG" - exit 1 ;; + h) + usage + exit 0 + ;; + w) + checkForDependencies "libnewt" + setDialogBox "whiptail" + ;; + d) + checkForDependencies "dialog" + setDialogBox "dialog" + ;; + ?) + printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG" + exit 1 + ;; esac done