We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 091a5fe commit fe86950Copy full SHA for fe86950
lib/MetaCPAN/Script/Release.pm
@@ -433,13 +433,11 @@ sub _build_perms {
433
close $fh;
434
}
435
436
- # we would like this data to come from CPAN directly eventually
437
- #my $pumpking_file = $self->cpan->child(qw(modules 07pumpkings.txt));
438
- my $pumpking_file
439
- = path(__FILE__)->parent->child(qw(Release 07pumpkings.txt));
+ my $pumpking_file = $self->cpan->child(qw(authors 08pumpkings.txt.gz));
440
if ( -e $pumpking_file ) {
441
log_debug { "parsing ", $pumpking_file };
442
- my $fh = $pumpking_file->openr;
+
+ my $fh = $pumpking_file->openr(':gzip');
443
while ( my $line = <$fh> ) {
444
chomp $line;
445
push( @{ $authors{perl} ||= [] }, $line );
lib/MetaCPAN/Script/Release/07pumpkings.txt
0 commit comments