diff options
author | Nicolas R <atoomic@cpan.org> | 2019-06-11 11:48:40 -0600 |
---|---|---|
committer | Nicolas R <atoomic@cpan.org> | 2019-10-19 11:01:27 +0200 |
commit | 79ff1055edda279426b74e4ec66c4a889721443b (patch) | |
tree | 2ad6d495bdc39ec59dd5985f681e3ff0f9c270f0 /Porting/manicheck | |
parent | 859b78b1a8287681e524286f4e989b01816433ba (diff) | |
download | perl-79ff1055edda279426b74e4ec66c4a889721443b.tar.gz |
Add GitHub issue templates
These files should not be in the MANIFEST
adjust porting/manifest.t to ignore .github files
in addition to .gitignore files.
Diffstat (limited to 'Porting/manicheck')
-rw-r--r-- | Porting/manicheck | 1 |
1 files changed, 1 insertions, 0 deletions
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}; }, }, "."; |