Skip to content

Commit

Permalink
Make PkgVersion skip pod files
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg authored and rjbs committed Jul 25, 2015
1 parent eb70f34 commit f521a1a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/Dist/Zilla/Plugin/PkgVersion.pm
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ sub munge_file {
return;
}

if ($file->name =~ /\.pod$/) {
$self->log_debug($file->name . " is a pod file, skipping...");
return;
}

return $self->munge_perl($file);
}

Expand Down

0 comments on commit f521a1a

Please sign in to comment.