From cef76cd1b0ae32ba1d9733c9d09d62de24559743 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 29 Jul 2023 08:52:48 -0300 Subject: bin/*: Add matching parenthesis to case clauses --- bin/reconfigure | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bin/reconfigure') diff --git a/bin/reconfigure b/bin/reconfigure index ca38cb1..daed9b7 100755 --- a/bin/reconfigure +++ b/bin/reconfigure @@ -40,15 +40,15 @@ help() { for flag in "$@"; do case "$flag" in - --) + (--) break ;; - --help) + (--help) usage help exit ;; - *) + (*) ;; esac done @@ -59,12 +59,12 @@ while getopts 'Uh' flag; do U) UPDATE=true ;; - h) + (h) usage help exit ;; - *) + (*) usage >&2 exit 2 ;; -- cgit v1.2.3