aboutsummaryrefslogtreecommitdiffstats
path: root/t/t0000-basic.sh
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2018-07-01 20:23:55 -0400
committerJunio C Hamano <gitster@pobox.com>2018-07-16 14:38:47 -0700
commit75651fd7835f6c74d7ef952ac314e69e97fe4a92 (patch)
tree2a3504316f70d240d63b555d44a1727fc9fce05c /t/t0000-basic.sh
parent794165cb17c1f19c21ac36c2c362f0e4069de792 (diff)
downloadgit-75651fd7835f6c74d7ef952ac314e69e97fe4a92.tar.gz
t0000-t0999: fix broken &&-chains
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0000-basic.sh')
-rwxr-xr-xt/t0000-basic.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh
index af61d083b4..34859fe4a5 100755
--- a/t/t0000-basic.sh
+++ b/t/t0000-basic.sh
@@ -1081,7 +1081,7 @@ test_expect_success 'very long name in the index handled sanely' '
(
git ls-files -s path4 |
sed -e "s/ .*/ /" |
- tr -d "\012"
+ tr -d "\012" &&
echo "$a"
) | git update-index --index-info &&
len=$(git ls-files "a*" | wc -c) &&