[parser] Fixed merge conflict

This commit is contained in:
ayakael 2018-05-04 12:33:10 -07:00
commit b55b55ce7b
No known key found for this signature in database
GPG key ID: 575626A4AE5F4026
3 changed files with 13 additions and 5 deletions

View file

@ -7,9 +7,9 @@
GIT_DIR="./"
#Recursive argument parser
while [[ -z "${1}" ]]; do
case ${1} in
--help)
while true; do
case ${1} in
--help)
shift
HELP="${1}"
[[ -z "${HELP}" ]] && HELP=general
@ -25,7 +25,10 @@ while [[ -z "${1}" ]]; do
--git-dir)
shift
GIT_DIR="${1}"
shift
;;
*)
break
;;
esac