diff options
| author | Kostya Farber <kostya.farber@gmail.com> | 2023-02-04 20:41:24 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-02-06 14:14:20 -0800 |
| commit | d912a603eda751b2846f1d2ab0843c4b7f7d0e9c (patch) | |
| tree | 68c845df7d9838dc34455c920efc9c88eee7a421 | |
| parent | Sync with maint-2.38 (diff) | |
| download | git-d912a603eda751b2846f1d2ab0843c4b7f7d0e9c.tar.gz git-d912a603eda751b2846f1d2ab0843c4b7f7d0e9c.zip | |
t5000: modernise archive and :(glob) test
To match present day coding guiding codelines let's:
- use <<-EOF, so we can indent all lines to the
the same level for this test
- use <<\EOF to notify the reader that no interpolation
is expected in the body
Signed-off-by: Kostya Farber <kostya.farber@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rwxr-xr-x | t/t5000-tar-tree.sh | 10 |
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 ' |
