[parser] Fixed indentation for general options, try 2
This commit is contained in:
parent
e160d6df7e
commit
45fc52df36
1 changed files with 8 additions and 9 deletions
17
src/parser
17
src/parser
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue