mirror of
https://github.com/curl/curl.git
synced 2025-09-17 17:42:49 +03:00
scripts/copyright.pl: fix the exclusion to not ignore man pages
Ref: #8869 Closes #8952
This commit is contained in:
parent
df829a1fa9
commit
e517b63223
|
@ -31,7 +31,10 @@
|
||||||
my @skiplist=(
|
my @skiplist=(
|
||||||
'^tests\/data\/test(\d+)$', # test case data
|
'^tests\/data\/test(\d+)$', # test case data
|
||||||
'^docs\/cmdline-opts\/[a-z]+(.*)\.d$', # curl.1 pieces
|
'^docs\/cmdline-opts\/[a-z]+(.*)\.d$', # curl.1 pieces
|
||||||
'(\/|^)[A-Z0-9_.-]+$', # all uppercase file name, possibly with dot and dash
|
|
||||||
|
# all uppercase file name, possibly with dot and dash. But do not exclude
|
||||||
|
# the man pages:
|
||||||
|
'(\/|^)[A-Z0-9_.-]+[^31]$',
|
||||||
'(\/|^)[A-Z0-9_-]+\.md$', # all uppercase file name with .md extension
|
'(\/|^)[A-Z0-9_-]+\.md$', # all uppercase file name with .md extension
|
||||||
'.gitignore', # wherever they are
|
'.gitignore', # wherever they are
|
||||||
'.gitattributes', # wherever they are
|
'.gitattributes', # wherever they are
|
||||||
|
|
Loading…
Reference in New Issue
Block a user