From: Elia Pinto Date: Fri, 6 Jun 2014 14:55:49 +0000 (-0700) Subject: contrib/examples/git-resolve.sh: avoid "test -a/-o " X-Git-Tag: v2.1.0-rc0~79^2~14 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/6f34b79de15f92b53d050598b04444e8421d7b7d contrib/examples/git-resolve.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 --- diff --git a/contrib/examples/git-resolve.sh b/contrib/examples/git-resolve.sh index 48d0fc971f..70fdc27b72 100755 --- a/contrib/examples/git-resolve.sh +++ b/contrib/examples/git-resolve.sh @@ -76,7 +76,7 @@ case "$common" in 2>/dev/null || continue # Count the paths that are unmerged. cnt=$(GIT_INDEX_FILE=$G git ls-files --unmerged | wc -l) - if test $best_cnt -le 0 -o $cnt -le $best_cnt + if test $best_cnt -le 0 || test $cnt -le $best_cnt then best=$c best_cnt=$cnt