From 51f4f650d28d79787b9f3f366567f32a581b3cc1 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 27 Dec 2021 21:44:46 -0300 Subject: [PATCH] Refactor --- scripts/bootstrap.sh | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 6d1dd8d..2d14816 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -18,22 +18,14 @@ 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