diff options
author | Nanako Shiraishi <nanako3@lavabit.com> | 2009-08-26 17:38:50 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-26 12:05:57 -0700 |
commit | 21d0bc2f9a5bcbee2593e9f2ad05d64d3dcf3a0e (patch) | |
tree | c74e41b3cc9435fee0ddd7edd357b731a0dd6fe2 /git-bisect.sh | |
parent | 1d2a7e0c589e8c1328ebabd64f74d26357d431b2 (diff) | |
download | git-21d0bc2f9a5bcbee2593e9f2ad05d64d3dcf3a0e.tar.gz git-21d0bc2f9a5bcbee2593e9f2ad05d64d3dcf3a0e.tar.xz |
git-bisect: call the found commit "*the* first bad commit"
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 896955365..6f6f03966 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -405,7 +405,7 @@ bisect_run () { exit $res fi - if grep "is first bad commit" "$GIT_DIR/BISECT_RUN" > /dev/null; then + if grep "is the first bad commit" "$GIT_DIR/BISECT_RUN" > /dev/null; then echo "bisect run success" exit 0; fi |