mirror of
https://github.com/postgres/postgres.git
synced 2026-02-26 03:11:02 -05:00
Add comment about skipping binary files for copyright changes.
This commit is contained in:
parent
631beeac35
commit
a8ab8d0eaa
1 changed files with 2 additions and 0 deletions
|
|
@ -31,6 +31,8 @@ sub wanted {
|
|||
}
|
||||
|
||||
return if ! -f $File::Find::name || -l $File::Find::name;
|
||||
# skip file names with binary extensions
|
||||
# How are these updated? bjm 2012-01-02
|
||||
return if ($_ =~ m/\.(ico|bin)$);
|
||||
|
||||
my @lines;
|
||||
|
|
|
|||
Loading…
Reference in a new issue