diff options
Diffstat (limited to 'bin/reconfigure')
-rwxr-xr-x | bin/reconfigure | 10 |
1 files changed, 5 insertions, 5 deletions
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 ;; |