bisect--helper: log: allow arbitrary number of arguments

In a later change, we would like to turn bisect into a builtin by
renaming bisect--helper.

However, there's an oddity that "git bisect log" accepts any number of
arguments and it will just ignore them all.

Let's prepare for the next step by ignoring any arguments passed to
"git bisect--helper log"

Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
This commit is contained in:
Đoàn Trần Công Danh
2022-11-10 23:36:45 +07:00
committed by Taylor Blau
parent df63421be9
commit 0da4b538e4
2 changed files with 1 additions and 5 deletions

View File

@@ -57,8 +57,6 @@ case "$#" in
case "$cmd" in
help)
git bisect -h ;;
log)
git bisect--helper log || exit ;;
*)
git bisect--helper "$cmd" "$@" ;;
esac