From 7d040cd66808f80a04cc0447d8edc9b3f5265754 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Mon, 24 Aug 2020 07:30:17 -0700 Subject: [PATCH] do not ulink tmpfile - appveyor does not allow --- t/test-eol.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/test-eol.t b/t/test-eol.t index 7fe3ba77..16ded8f3 100644 --- a/t/test-eol.t +++ b/t/test-eol.t @@ -130,4 +130,5 @@ Perl::Tidy::perltidy( ok($output, $expected_output, "output file EOLs (UTF8)"); -if ( -e $output_filename ) { unlink $output_filename } +# Appveyor produces an error if you try to unlink a temp file +##if ( -e $output_filename ) { unlink $output_filename } -- 2.39.5