88a30b027e36b84b4411ef7918c8db23277c440f
[p5sagit/Distar.git] / helpers / add-readme-to-manifest
1 #!/usr/bin/env perl
2
3 use strict;
4 use warnings FATAL => 'all';
5
6 use ExtUtils::Manifest 'maniadd';
7
8 eval { maniadd({ README => "README file (added by Distar)"}) }
9   or print "Could not add README to MANIFEST: $@\n";