From: Elia Pinto Date: Fri, 6 Jun 2014 14:56:02 +0000 (-0700) Subject: t/test-lib-functions.sh: avoid "test -a/-o " X-Git-Tag: v2.1.0-rc0~79^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/0cfe6fd252ee0898d832823bdab66d3cc986f3df?ds=sidebyside;hp=0cfe6fd252ee0898d832823bdab66d3cc986f3df t/test-lib-functions.sh: avoid "test -a/-o " 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 Reviewed-by: Matthieu Moy Signed-off-by: Junio C Hamano ---