Re: [PATCH 10/11] run command: add RUN_COMMAND_NO_STDOUT

2016-09-28 Thread Kevin Wern
On Wed, Sep 28, 2016 at 10:54:52AM -0700, Junio C Hamano wrote: > > I just got an impression that you were apologetic for having to add > this option that is otherwise useless and tried to suggest a simpler > solution that does not involve such an addition. Sorry, to be clear, I meant I was ok wi

Re: [PATCH 10/11] run command: add RUN_COMMAND_NO_STDOUT

2016-09-28 Thread Junio C Hamano
Kevin Wern writes: > On Fri, Sep 16, 2016 at 04:07:00PM -0700, Junio C Hamano wrote: >> Kevin Wern writes: >> >> > Add option RUN_COMMAND_NO_STDOUT, which sets no_stdout on a child >> > process. >> > >> > This will be used by git clone when calling index-pack on a downloaded >> > packfile. >>

Re: [PATCH 10/11] run command: add RUN_COMMAND_NO_STDOUT

2016-09-27 Thread Kevin Wern
On Fri, Sep 16, 2016 at 04:07:00PM -0700, Junio C Hamano wrote: > Kevin Wern writes: > > > Add option RUN_COMMAND_NO_STDOUT, which sets no_stdout on a child > > process. > > > > This will be used by git clone when calling index-pack on a downloaded > > packfile. > > If it is just one caller, wou

Re: [PATCH 10/11] run command: add RUN_COMMAND_NO_STDOUT

2016-09-18 Thread Johannes Schindelin
Hi, On Fri, 16 Sep 2016, Junio C Hamano wrote: > Kevin Wern writes: > > > Add option RUN_COMMAND_NO_STDOUT, which sets no_stdout on a child > > process. > > > > This will be used by git clone when calling index-pack on a downloaded > > packfile. > > If it is just one caller, would't it make mo

Re: [PATCH 10/11] run command: add RUN_COMMAND_NO_STDOUT

2016-09-16 Thread Junio C Hamano
Kevin Wern writes: > Add option RUN_COMMAND_NO_STDOUT, which sets no_stdout on a child > process. > > This will be used by git clone when calling index-pack on a downloaded > packfile. If it is just one caller, would't it make more sense for that caller set no_stdout explicitly itself?

[PATCH 10/11] run command: add RUN_COMMAND_NO_STDOUT

2016-09-15 Thread Kevin Wern
Add option RUN_COMMAND_NO_STDOUT, which sets no_stdout on a child process. This will be used by git clone when calling index-pack on a downloaded packfile. Signed-off-by: Kevin Wern --- run-command.c | 1 + run-command.h | 1 + 2 files changed, 2 insertions(+) diff --git a/run-command.c b/run-