[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
HELP="${1}"
[[ -z "${HELP}" ]] && HELP=general
eval help_${HELP}
exit
;;
eval help_${HELP}
exit
;;
--info)
--info)
help_info
exit
;;
exit
;;
--git-dir)
shift
@ -29,8 +28,8 @@ while [[ -z "${1}" ]]; do
shift
;;
esac
shift
esac
shift
done