summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorBrandon Casey <casey@nrlssc.navy.mil>2008-07-22 21:16:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-07-23 18:35:16 (GMT)
commit9a885fac0d530854f81eb6f4c4e19380ea041047 (patch)
tree34faf9369b2c01287cef1d57a885d81359bed9ec /t
parent2b14d07237fb6a52a55e89dde027e40aa627789d (diff)
downloadgit-9a885fac0d530854f81eb6f4c4e19380ea041047.zip
git-9a885fac0d530854f81eb6f4c4e19380ea041047.tar.gz
git-9a885fac0d530854f81eb6f4c4e19380ea041047.tar.bz2
t4116-apply-reverse.sh: use $TAR rather than tar
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t4116-apply-reverse.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4116-apply-reverse.sh b/t/t4116-apply-reverse.sh
index 1459a90..2298ece 100755
--- a/t/t4116-apply-reverse.sh
+++ b/t/t4116-apply-reverse.sh
@@ -48,12 +48,12 @@ test_expect_success 'apply in reverse' '
test_expect_success 'setup separate repository lacking postimage' '
- git tar-tree initial initial | tar xf - &&
+ git tar-tree initial initial | $TAR xf - &&
(
cd initial && git init && git add .
) &&
- git tar-tree second second | tar xf - &&
+ git tar-tree second second | $TAR xf - &&
(
cd second && git init && git add .
)