1
0
Fork 0
mirror of https://git.ludikovsky.name/git/fugitive.git synced 2024-06-24 10:55:27 +02:00

removed unnecessary argument

This commit is contained in:
p4bl0 2010-08-08 21:32:00 +02:00
parent 6058d40c20
commit b689b42668

View file

@ -108,6 +108,6 @@ case "$1" in
"--help"|"-h") fugitive_help >&2;; # TODO
"--install"|"--install-local") fugitive_install "$2" "local";;
"--install-remote") fugitive_install "$2" "remote";;
"--install-hooks") fugitive_install_hooks "$2";;
"--install-hooks") fugitive_install_hooks;;
*) fugitive_usage >&2;; # TODO
esac