diff options
Diffstat (limited to 'Porting')
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rwxr-xr-x | Porting/makerel | 2 | ||||
-rw-r--r-- | Porting/manicheck | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 276e9d2403..06382528e1 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -16,7 +16,7 @@ use File::Glob qw(:case); # complain if it can't find them) @IGNORABLE = qw( - .cvsignore .dualLivedDiffConfig .gitignore .perlcriticrc .perltidyrc + .cvsignore .dualLivedDiffConfig .gitignore .github .perlcriticrc .perltidyrc .travis.yml ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING CONTRIBUTING.md CONTRIBUTING.mkdn COPYING Copying cpanfile CREDITS dist.ini GOALS HISTORY diff --git a/Porting/makerel b/Porting/makerel index 4fc0d80be0..3e83b8d0ad 100755 --- a/Porting/makerel +++ b/Porting/makerel @@ -77,7 +77,7 @@ print "\nMaking a release for $perl in $relroot/$reldir\n\n"; print "Cross-checking the MANIFEST...\n"; ($missfile, $missentry) = fullcheck(); @$missentry - = grep {$_ !~ m!^\.git/! and $_ !~ m!(?:/|^)\.gitignore!} @$missentry; + = grep {$_ !~ m!^\.(?:git|github)/! and $_ !~ m!(?:/|^)\.gitignore!} @$missentry; if (@$missfile ) { warn "Can't make a release with MANIFEST files missing:\n"; warn "\t".$_."\n" for (@$missfile); diff --git a/Porting/manicheck b/Porting/manicheck index b544a12252..e206861f66 100644 --- a/Porting/manicheck +++ b/Porting/manicheck @@ -21,6 +21,7 @@ find { return if -d; return if $_ eq '.gitignore'; return if $x =~ /^\.git\b/; + return if $x =~ m{^\.github/}; print "$x\t\tnot in MANIFEST\n" if !$files{$x}; }, }, "."; |