summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2019-11-20 19:55:59 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2019-11-20 19:55:59 +0000
commit7bdf6348d0802733c4b9a5614fc43c89e38ed2ed (patch)
tree06cec1a68e5fbee7a1c2812f2cf2af830a96601e
parent3af53b7eebc4f74fe09cfa1087fc01aeaacf5807 (diff)
downloadperl-5.31.6.tar.gz
Make makerel ignore other .git* files as wellv5.31.6
-rwxr-xr-xPorting/makerel2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/makerel b/Porting/makerel
index 3e83b8d0ad..9199a1ae06 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|github)/! 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);