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>
maint
Brandon Casey 2008-07-22 16:16:25 -05:00 committed by Junio C Hamano
parent 2b14d07237
commit 9a885fac0d
1 changed files with 2 additions and 2 deletions

View File

@ -48,12 +48,12 @@ test_expect_success 'apply in reverse' '


test_expect_success 'setup separate repository lacking postimage' ' 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 . 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 . cd second && git init && git add .
) )