diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-09-23 13:44:48 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-09-23 13:44:48 -0700 |
| commit | 0a4cb1f1f2f64e5f3791809284ba786a8094dfb4 (patch) | |
| tree | 17d029ca760431634ca1acd93472065ee63ddeaa /run-command.c | |
| parent | Merge branch 'ab/unused-script-helpers' (diff) | |
| parent | bisect--helper: retire `--bisect-next-check` subcommand (diff) | |
| download | git-0a4cb1f1f2f64e5f3791809284ba786a8094dfb4.tar.gz git-0a4cb1f1f2f64e5f3791809284ba786a8094dfb4.zip | |
Merge branch 'mr/bisect-in-c-4'
Rewrite of "git bisect" in C continues.
* mr/bisect-in-c-4:
bisect--helper: retire `--bisect-next-check` subcommand
bisect--helper: reimplement `bisect_run` shell function in C
bisect--helper: reimplement `bisect_visualize()` shell function in C
run-command: make `exists_in_PATH()` non-static
t6030-bisect-porcelain: add test for bisect visualize
t6030-bisect-porcelain: add tests to control bisect run exit cases
Diffstat (limited to 'run-command.c')
| -rw-r--r-- | run-command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run-command.c b/run-command.c index 821245672d..04a07e6366 100644 --- a/run-command.c +++ b/run-command.c @@ -211,9 +211,9 @@ static char *locate_in_PATH(const char *file) return NULL; } -static int exists_in_PATH(const char *file) +int exists_in_PATH(const char *command) { - char *r = locate_in_PATH(file); + char *r = locate_in_PATH(command); int found = r != NULL; free(r); return found; |
