t3901: avoid negation on right hand side of '|'
commitd4ea4e27463576f33866b1c3f0fe41913fb03ef7
authorBrandon Casey <casey@nrlssc.navy.mil>
Mon, 18 May 2009 23:44:42 +0000 (18 18:44 -0500)
committerJunio C Hamano <gitster@pobox.com>
Tue, 19 May 2009 03:53:16 +0000 (18 20:53 -0700)
tree6d726a4d9ba15de8ba9d97bb7abdd36c73591fb9
parent62645006044c7453439f6ad8dafc984441ac54b6
t3901: avoid negation on right hand side of '|'

Some shells do not properly handle constructs of the form:

   spew_something | ! process_input

So rewrite this to be:

   spew_something | process_input; test $? != 0

Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3901-i18n-patch.sh