mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
Do not fail after calling bisect_auto_next()
As a convenience measure, 'bisect bad' or 'bisect good' automatically does 'bisect next' when it knows it can, but the result of that test to see if it can was leaking through as the exit code from the whole thing, which was bad. Noticed by Anton Blanchard. Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
b3661567cf
commit
434d036fe4
@ -110,7 +110,7 @@ bisect_next_check() {
|
||||
}
|
||||
|
||||
bisect_auto_next() {
|
||||
bisect_next_check && bisect_next
|
||||
bisect_next_check && bisect_next || :
|
||||
}
|
||||
|
||||
bisect_next() {
|
||||
|
Loading…
Reference in New Issue
Block a user