commit | 897f964c0dce8e7cc2cc53bb19b83cadce106773 | [log] [tgz] |
---|---|---|
author | Junio C Hamano <gitster@pobox.com> | Tue May 20 11:12:02 2014 -0700 |
committer | Junio C Hamano <gitster@pobox.com> | Tue May 20 11:19:43 2014 -0700 |
tree | 06125e26e6ee2c83b70e1739aa323efab225c599 | |
parent | f26443da0449c459dab8b91d963bd91dd4335657 [diff] |
CodingGuidelines: avoid "test <cond> -a/-o <cond>" The construct is error-prone; "test" being built-in in most modern shells, the reason to avoid "test <cond> && test <cond>" spawning one extra process by using a single "test <cond> -a <cond>" no longer exists. Signed-off-by: Junio C Hamano <gitster@pobox.com>