From 609bd6731068597d75e99f0b79046807e08d25aa Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sun, 19 Jan 2020 21:58:13 +0200 Subject: [PATCH] appveyor fix 15 : cancel win32 path hack --- fortune-mod/tests/t/test-fortune-m.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fortune-mod/tests/t/test-fortune-m.t b/fortune-mod/tests/t/test-fortune-m.t index 04a8e80..2a40a1a 100644 --- a/fortune-mod/tests/t/test-fortune-m.t +++ b/fortune-mod/tests/t/test-fortune-m.t @@ -13,7 +13,10 @@ use Test::More tests => 1; my $inst_dir = FortTestInst::install("fortune-m"); my $IS_WIN = ( $^O eq "MSWin32" ); my @cmd = ( $inst_dir->child( 'games', 'fortune' ), '-m', 'giants' ); - if ($IS_WIN) + + # Does not help: + # if ($IS_WIN) + if (0) { print "IS_WIN=1\n"; $cmd[0] = ( "$cmd[0]" =~ s#/#\\\\#gr ); -- 2.40.0