From: Brandon Casey Date: Tue, 22 Jul 2008 21:16:25 +0000 (-0500) Subject: t4116-apply-reverse.sh: use $TAR rather than tar X-Git-Tag: v1.6.0-rc1~70 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/9a885fac0d530854f81eb6f4c4e19380ea041047?ds=inline;hp=--cc t4116-apply-reverse.sh: use $TAR rather than tar Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- 9a885fac0d530854f81eb6f4c4e19380ea041047 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 . )