[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
|
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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue