Skip Menu |

This queue is for tickets about the Dist-Zilla-App-Command-podpreview CPAN distribution.

Report information
The Basics
Id: 88700
Status: resolved
Priority: 0/
Queue: Dist-Zilla-App-Command-podpreview

People
Owner: Nobody in particular
Requestors: aku [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.003
Fixed in: (no value)



Subject: podpreview does not find any files
dzil podprewiew Modulename Never finds the module. I have the newest Dist::Zilla from CPAN. I was able to fix this by changing lines 50-53 in podpreview.pm: my $object = first { my $name = $_; first { $name eq $_ } @filenames } @{ $self->zilla->files }; To: my $object = first { my $name = $_->name; first { $name eq $_ } @filenames } @{ $self->zilla->files };