diff options
Diffstat (limited to 't/t5000-tar-tree.sh')
-rwxr-xr-x | t/t5000-tar-tree.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 6bf34066e1..5dffb8e1e5 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -50,7 +50,7 @@ test_expect_success \ test_expect_success \ 'validate file modification time' \ - 'TZ=GMT tar tvf b.tar a/a | + 'TZ=GMT $TAR tvf b.tar a/a | awk \{print\ \$4,\ \(length\(\$5\)\<7\)\ ?\ \$5\":00\"\ :\ \$5\} \ >b.mtime && echo "2005-05-27 22:00:00" >expected.mtime && @@ -63,7 +63,7 @@ test_expect_success \ test_expect_success \ 'extract tar archive' \ - '(cd b && tar xf -) <b.tar' + '(cd b && $TAR xf -) <b.tar' test_expect_success \ 'validate filenames' \ @@ -80,7 +80,7 @@ test_expect_success \ test_expect_success \ 'extract tar archive with prefix' \ - '(cd c && tar xf -) <c.tar' + '(cd c && $TAR xf -) <c.tar' test_expect_success \ 'validate filenames with prefix' \ |