X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-bisect--helper.c;h=5b226399e1c30b23a7b5d226a3f45efe9dbedf45;hb=b6b0737d02e3bb9b3015ec66f5b6454d5b83d57b;hp=cb86a9a9e0cacbc64e1af8866b62d8f29dbc1776;hpb=ef24c7ca055f03c673c2b67a3a7c92bcc32f62f0;p=git.git diff --git a/builtin-bisect--helper.c b/builtin-bisect--helper.c index cb86a9a9e..5b226399e 100644 --- a/builtin-bisect--helper.c +++ b/builtin-bisect--helper.c @@ -4,30 +4,25 @@ #include "bisect.h" static const char * const git_bisect_helper_usage[] = { - "git bisect--helper --next-vars", - "git bisect--helper --next-exit", + "git bisect--helper --next-all", NULL }; int cmd_bisect__helper(int argc, const char **argv, const char *prefix) { - int next_vars = 0; - int next_exit = 0; + int next_all = 0; struct option options[] = { - OPT_BOOLEAN(0, "next-vars", &next_vars, - "output next bisect step variables"), - OPT_BOOLEAN(0, "next-exit", &next_exit, - "output bisect result and exit instuctions"), + OPT_BOOLEAN(0, "next-all", &next_all, + "perform 'git bisect next'"), OPT_END() }; - argc = parse_options(argc, argv, options, git_bisect_helper_usage, 0); + argc = parse_options(argc, argv, prefix, options, + git_bisect_helper_usage, 0); - if ((next_vars && next_exit) || (!next_vars && !next_exit)) + if (!next_all) usage_with_options(git_bisect_helper_usage, options); - if (next_vars) - return bisect_next_vars(prefix); - else /* next-exit */ - return bisect_next_exit(prefix); + /* next-all */ + return bisect_next_all(prefix); }