diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2005-11-08 11:45:15 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-08 11:26:03 -0800 |
commit | cb34882bd61e00295b6213d8c4c7bf9bb0e10a17 (patch) | |
tree | b95f29a56aca354f97fccf07a94d489db4baef66 /t | |
parent | f8d294f0a44c4305a9f3a1c70beb6a1c7583f287 (diff) | |
download | git-cb34882bd61e00295b6213d8c4c7bf9bb0e10a17.tar.gz git-cb34882bd61e00295b6213d8c4c7bf9bb0e10a17.tar.xz |
fix t5000-tar-tree.sh when $TAR isn't set
$TAR isn't set everywhere. Provide a default (tar)
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5000-tar-tree.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 4db1bb114..adc5e937d 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -25,6 +25,7 @@ commit id embedding: ' . ./test-lib.sh +TAR=${TAR:-tar} test_expect_success \ 'populate workdir' \ |