Code

t4116-apply-reverse.sh: use $TAR rather than tar
authorBrandon Casey <casey@nrlssc.navy.mil>
Tue, 22 Jul 2008 21:16:25 +0000 (16:16 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Jul 2008 18:35:16 +0000 (11:35 -0700)
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4116-apply-reverse.sh

index 1459a90716c909cf4e0497e452eab3398ba05b83..2298ece8019d79ef718ef658bdac74493d265b92 100755 (executable)
@@ -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 .
        )