[parser] Fixed indentation for general options, try 2

This commit is contained in:
ayakael 2018-04-30 08:54:24 -07:00
parent e160d6df7e
commit 45fc52df36
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026

View file

@ -13,15 +13,14 @@ while [[ -z "${1}" ]]; do
shift shift
HELP="${1}" HELP="${1}"
[[ -z "${HELP}" ]] && HELP=general [[ -z "${HELP}" ]] && HELP=general
eval help_${HELP} eval help_${HELP}
exit exit
;; ;;
--info) --info)
help_info help_info
exit exit
;; ;;
--git-dir) --git-dir)
shift shift
@ -29,8 +28,8 @@ while [[ -z "${1}" ]]; do
shift shift
;; ;;
esac esac
shift shift
done done