From c04167d2415a2a21aa4022e114597c93da9b7807 Mon Sep 17 00:00:00 2001 From: Gurkirat Singh Date: Fri, 10 Feb 2023 18:53:33 +0530 Subject: [PATCH] fix (lint): disable SC2317 in install.sh --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index 2bb78a3f..67b8c754 100755 --- a/install.sh +++ b/install.sh @@ -158,6 +158,7 @@ while getopts "hsinaf" opt; do case "$opt" in "h") _bash-it_show_usage + # shellcheck disable=SC2317 exit 0 ;; "s") silent=true ;; @@ -167,6 +168,7 @@ while getopts "hsinaf" opt; do "f") overwrite_backup=true ;; "?") _bash-it_show_usage >&2 + # shellcheck disable=SC2317 exit 1 ;; esac