Skip to content

Commit 5d2bbb8

Browse files
authored
Merge pull request #944 from Grinnz/patch-2
Skip indexing distributions in a Raku subdir
2 parents 16285a8 + e6b1b50 commit 5d2bbb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/MetaCPAN/Script/Release.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ my @skip_dists = (
118118
qr{/ILYAZ/os2/[^/]+/perl_\w+\.zip\z},
119119
qr{/ILYAZ/os2/perl[^/]+\.zip\z},
120120

121-
# Strip off any files in a Perl6 folder
121+
# Strip off any files in a Perl6 or Raku folder
122122
# e.g. http://www.cpan.org/authors/id/J/JD/JDV/Perl6/
123123
# As here we are indexing perl5 only
124-
qr{/Perl6/},
124+
qr{/(?:Perl6|Raku)/},
125125
);
126126

127127
my ($SKIP_MATCH) = map qr/$_/, join '|',

0 commit comments

Comments
 (0)