aboutsummaryrefslogtreecommitdiff
path: root/t/t4116-apply-reverse.sh
diff options
context:
space:
mode:
authorBrandon Casey <casey@nrlssc.navy.mil>2008-07-22 16:16:25 -0500
committerJunio C Hamano <gitster@pobox.com>2008-07-23 11:35:16 -0700
commit9a885fac0d530854f81eb6f4c4e19380ea041047 (patch)
tree34faf9369b2c01287cef1d57a885d81359bed9ec /t/t4116-apply-reverse.sh
parent2b14d07237fb6a52a55e89dde027e40aa627789d (diff)
downloadgit-9a885fac0d530854f81eb6f4c4e19380ea041047.tar.gz
git-9a885fac0d530854f81eb6f4c4e19380ea041047.tar.xz
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/t4116-apply-reverse.sh')
-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 1459a9071..2298ece80 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 .
)