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