Re: [PATCH 09/20] git-rebase--interactive.sh: avoid "test -a/-o "

2014-06-10 Thread David Aguilar
On Fri, Jun 06, 2014 at 07:55:52AM -0700, Elia Pinto wrote: > The construct is error-prone; "test" being built-in in most modern > shells, the reason to avoid "test && test " spawning > one extra process by using a single "test -a " no > longer exists. > > Signed-off-by: Elia Pinto > --- > git

[PATCH 09/20] git-rebase--interactive.sh: avoid "test -a/-o "

2014-06-06 Thread Elia Pinto
The construct is error-prone; "test" being built-in in most modern shells, the reason to avoid "test && test " spawning one extra process by using a single "test -a " no longer exists. Signed-off-by: Elia Pinto --- git-rebase--interactive.sh |2 +- 1 file changed, 1 insertion(+), 1 deletio