Imported Upstream version 2.20.2
[platform/upstream/git.git] / t / t4103-apply-binary.sh
index b1b906b..1b420e3 100755 (executable)
@@ -23,10 +23,10 @@ test_expect_success 'setup' '
        git commit -m "Initial Version" 2>/dev/null &&
 
        git checkout -b binary &&
-       "$PERL_PATH" -pe "y/x/\000/" <file1 >file3 &&
+       perl -pe "y/x/\000/" <file1 >file3 &&
        cat file3 >file4 &&
        git add file2 &&
-       "$PERL_PATH" -pe "y/\000/v/" <file3 >file1 &&
+       perl -pe "y/\000/v/" <file3 >file1 &&
        rm -f file2 &&
        git update-index --add --remove file1 file2 file3 file4 &&
        git commit -m "Second Version" &&