Re: [PATCH 03/20] contrib/examples/git-commit.sh: avoid "test -a/-o "

2014-06-10 Thread David Aguilar
On Fri, Jun 06, 2014 at 07:55:46AM -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 > --- > con

[PATCH 03/20] contrib/examples/git-commit.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 --- contrib/examples/git-commit.sh |4 ++-- 1 file changed, 2 insertions(+), 2