Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-02-16 04:11:53 +0300
committerJunio C Hamano <gitster@pobox.com>2023-02-16 04:11:53 +0300
commit063ec7b3b8ab5c13bb37f20e42ecdcc01614aea5 (patch)
treec652577e52306b4214dccd9fa8623de1ce8b4ca3
parentaa1e73bdd8dfc47c1df312b0c99323c03087626f (diff)
parentd912a603eda751b2846f1d2ab0843c4b7f7d0e9c (diff)
Merge branch 'kf/t5000-modernise'
Test clean-up. * kf/t5000-modernise: t5000: modernise archive and :(glob) test
-rwxr-xr-xt/t5000-tar-tree.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh
index d473048138..eb3214bc17 100755
--- a/t/t5000-tar-tree.sh
+++ b/t/t5000-tar-tree.sh
@@ -402,11 +402,11 @@ test_expect_success GZIP 'extract tgz file (external gzip)' '
test_expect_success 'archive and :(glob)' '
git archive -v HEAD -- ":(glob)**/sh" >/dev/null 2>actual &&
- cat >expect <<EOF &&
-a/
-a/bin/
-a/bin/sh
-EOF
+ cat >expect <<-\EOF &&
+ a/
+ a/bin/
+ a/bin/sh
+ EOF
test_cmp expect actual
'