1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-11 10:28:26 +02:00

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>
This commit is contained in:
Brandon Casey 2008-07-22 16:16:25 -05:00 committed by Junio C Hamano
parent 2b14d07237
commit 9a885fac0d

View File

@ -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 .
)