diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2011-08-04 06:36:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-04 15:53:16 -0700 |
commit | dcc04366a4658763500724888d9e74cae317c861 (patch) | |
tree | f13854ed506a178e6c4fe92b134c3c4264433953 | |
parent | Disallow the empty string as an attribute name (diff) | |
download | tgif-dcc04366a4658763500724888d9e74cae317c861.tar.xz |
git-check-attr: Add missing "&&"
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t0003-attributes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0003-attributes.sh b/t/t0003-attributes.sh index 8c76b79bb0..dae76b39b8 100755 --- a/t/t0003-attributes.sh +++ b/t/t0003-attributes.sh @@ -35,7 +35,7 @@ test_expect_success 'setup' ' echo "h test=a/b/h" && echo "d/* test=a/b/d/*" echo "d/yes notest" - ) >a/b/.gitattributes + ) >a/b/.gitattributes && ( echo "global test=global" ) >"$HOME"/global-gitattributes |