Re: [PATCH v4 1/3] t: do not hide Git's exit code in tests
From: Lars Schneider <hidden>
Date: 2016-06-15 23:08:15
On 15 Feb 2016, at 18:41, Jeff King [off-list ref] wrote:
On Mon, Feb 15, 2016 at 11:17:44AM +0100, larsxschneider@gmail.com wrote:quoted
From: Lars Schneider <redacted> Git should not be on the left-hand side of a pipe, because it hides the exit code, and we want to make sure git does not fail.I think this is a nice cleanup.quoted
There is one more occurrence of this pattern in t9010-svn-fe.sh which is to evolved to change it easily.The final sentence in the commit message needs s/to/too/.
OK!
However, I'm not sure this is the only remaining case. Doing: git grep -E 'git.*[^|]\|($|[^|])' shows quite a few. I guess you just looked for "nul_to_q". There is certainly no need to fix all of them, but you may want to note the extent of your grepping in your commit message.
Yes, I looked only for nul_to_q... there are more than 1000 other cases. I thought about a clever sed script to fix the easy ones but I don't think it is worth the effort. Thanks, Lars