fix (lint): disable SC2317 in install.sh

pull/2192/head
Gurkirat Singh 2023-02-10 18:53:33 +05:30
parent 95b844570f
commit c04167d241
1 changed files with 2 additions and 0 deletions

View File

@ -158,6 +158,7 @@ while getopts "hsinaf" opt; do
case "$opt" in case "$opt" in
"h") "h")
_bash-it_show_usage _bash-it_show_usage
# shellcheck disable=SC2317
exit 0 exit 0
;; ;;
"s") silent=true ;; "s") silent=true ;;
@ -167,6 +168,7 @@ while getopts "hsinaf" opt; do
"f") overwrite_backup=true ;; "f") overwrite_backup=true ;;
"?") "?")
_bash-it_show_usage >&2 _bash-it_show_usage >&2
# shellcheck disable=SC2317
exit 1 exit 1
;; ;;
esac esac