replace and remove run_command_v_opt()
Replace the remaining calls of run_command_v_opt() with run_command() calls and explict struct child_process variables. This is more verbose, but not by much overall. The code becomes more flexible, e.g. it's easy to extend to conditionally add a new argument. Then remove the now unused function and its own flag names, simplifying the run-command API. Suggested-by: Jeff King <peff@peff.net> Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Taylor Blau <me@ttaylorr.com>
This commit is contained in:

committed by
Taylor Blau

parent
ef249b398e
commit
ddbb47fde9
@ -12,6 +12,7 @@ static int merge_entry(int pos, const char *path)
|
||||
const char *arguments[] = { pgm, "", "", "", path, "", "", "", NULL };
|
||||
char hexbuf[4][GIT_MAX_HEXSZ + 1];
|
||||
char ownbuf[4][60];
|
||||
struct child_process cmd = CHILD_PROCESS_INIT;
|
||||
|
||||
if (pos >= active_nr)
|
||||
die("git merge-index: %s not in the cache", path);
|
||||
@ -31,7 +32,8 @@ static int merge_entry(int pos, const char *path)
|
||||
if (!found)
|
||||
die("git merge-index: %s not in the cache", path);
|
||||
|
||||
if (run_command_v_opt(arguments, 0)) {
|
||||
strvec_pushv(&cmd.args, arguments);
|
||||
if (run_command(&cmd)) {
|
||||
if (one_shot)
|
||||
err++;
|
||||
else {
|
||||
|
Reference in New Issue
Block a user