[parser] Fixed merge conflict
This commit is contained in:
commit
b55b55ce7b
3 changed files with 13 additions and 5 deletions
11
src/parser
11
src/parser
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue