summaryrefslogtreecommitdiff
path: root/bisect.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-03-04 22:25:23 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-03-04 22:25:23 -0800
commitce5044df2a29c4f4979089b072aad43bccb3b9fd (patch)
tree1432db3858c686410831714052e52fbf4b7bdcdc /bisect.c
parentMerge branch 'maint-1.6.6' into maint (diff)
parentbisect: error out when passing bad path parameters (diff)
downloadtgif-ce5044df2a29c4f4979089b072aad43bccb3b9fd.tar.xz
Merge branch 'cc/maint-bisect-paths' into maint
* cc/maint-bisect-paths: bisect: error out when passing bad path parameters
Diffstat (limited to 'bisect.c')
-rw-r--r--bisect.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/bisect.c b/bisect.c
index 6dc27ee7a6..b556b11610 100644
--- a/bisect.c
+++ b/bisect.c
@@ -986,6 +986,12 @@ int bisect_next_all(const char *prefix)
exit(1);
}
+ if (!all) {
+ fprintf(stderr, "No testable commit found.\n"
+ "Maybe you started with bad path parameters?\n");
+ exit(4);
+ }
+
bisect_rev = revs.commits->item->object.sha1;
memcpy(bisect_rev_hex, sha1_to_hex(bisect_rev), 41);