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.tokkee.org/?a=commitdiff_plain;h=9a885fac0d530854f81eb6f4c4e19380ea041047;p=git.git t4116-apply-reverse.sh: use $TAR rather than tar Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- 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 . )