t0050: appease --chain-lint
commitbfe998fc9b5a02271941c7c28f55f6dd000fe76f
authorJeff King <peff@peff.net>
Fri, 20 Mar 2015 10:13:25 +0000 (20 06:13 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 20 Mar 2015 18:35:56 +0000 (20 11:35 -0700)
tree9e89c80186cfe742ebdb3dc0ecf44ea16a5b8bed
parent545871bf77da38ec98e66ed35751f42120f1987e
t0050: appease --chain-lint

Some of the symlink tests check an either-or case using the
"||". This is not wrong, but fools --chain-lint into
thinking the &&-chain is broken (in fact, there is no &&
chain here).

We can solve this by wrapping the "||" inside a {} block.
This is a bit more verbose, but this construct is rare, and
the {} block helps call attention to it.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0050-filesystem.sh