merge of Snippet fix
This commit is contained in:
parent
175622c23e
commit
67511cd89f
5 changed files with 49 additions and 3 deletions
|
|
@ -148,6 +148,12 @@ sub label_finder_pm {
|
|||
|
||||
sub obj_finder_pm {
|
||||
next unless /\.pm$/;
|
||||
warn "filename: $File::Find::name\n";
|
||||
if ($File::Find::name =~ m#(?:Help|i18n)/?$#) {
|
||||
warn "Pruned $File::Find::name\n";
|
||||
$File::Find::prune=1;
|
||||
return;
|
||||
}
|
||||
open my $pmf, $_
|
||||
or die "unable to open file $File::Find::name: $!\n";
|
||||
my $libFile = '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue