diff options
author | Jeff King <peff@peff.net> | 2008-10-13 05:35:59 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-17 11:30:54 -0700 |
commit | 72130808173d3dfee85f2a29548fa9fec33a5351 (patch) | |
tree | 09be2c953557aa9429f9a2a94caeab512cb2907c /t | |
parent | 8ed0a740dd42bd0724aebed6e3b07c4ea2a2d5e8 (diff) | |
download | git-72130808173d3dfee85f2a29548fa9fec33a5351.tar.gz |
tests: shell negation portability fix
Commit 969c8775 introduced a test which uses the non-portable construct:
command1 && ! command2 | command3
which must be
command1 && ! (command2 | command3)
to work on bsd shells (this is another example of bbf08124, which fixed
several similar cases).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t4128-apply-root.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4128-apply-root.sh b/t/t4128-apply-root.sh index bc7a8a8689..8f6aea48d8 100755 --- a/t/t4128-apply-root.sh +++ b/t/t4128-apply-root.sh @@ -72,7 +72,7 @@ test_expect_success 'apply --directory (delete file)' ' echo content >some/sub/dir/delfile && git add some/sub/dir/delfile && git apply --directory=some/sub/dir/ --index patch && - ! git ls-files | grep delfile + ! (git ls-files | grep delfile) ' cat > patch << 'EOF' |