diff options
author | Brandon Casey <casey@nrlssc.navy.mil> | 2008-07-22 16:16:25 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-23 11:35:16 -0700 |
commit | 9a885fac0d530854f81eb6f4c4e19380ea041047 (patch) | |
tree | 34faf9369b2c01287cef1d57a885d81359bed9ec /t/t4116-apply-reverse.sh | |
parent | 2b14d07237fb6a52a55e89dde027e40aa627789d (diff) | |
download | git-9a885fac0d530854f81eb6f4c4e19380ea041047.tar.gz |
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-x | t/t4116-apply-reverse.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4116-apply-reverse.sh b/t/t4116-apply-reverse.sh index 1459a90716..2298ece801 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 . ) |