Do not merge! Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- run-command.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/run-command.c b/run-command.c index b900c6e..2bb3dcf 100644 --- a/run-command.c +++ b/run-command.c @@ -246,6 +246,11 @@ static int wait_or_whine(struct child_process *cmd, pid_t pid, const char *argv0 pid_t waiting; int failed_errno = 0; + do { + if (!check_command(cmd)) + break; + } while(1); + waiting = persistent_waitpid(cmd, pid, &status); if (waiting < 0) { -- 1.8.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html