1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-01 01:04:50 +03:00

Add comment about skipping binary files for copyright changes.

This commit is contained in:
Bruce Momjian 2012-01-02 08:48:59 -05:00
parent 631beeac35
commit a8ab8d0eaa

View File

@ -31,6 +31,8 @@ sub wanted {
} }
return if ! -f $File::Find::name || -l $File::Find::name; 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)$); return if ($_ =~ m/\.(ico|bin)$);
my @lines; my @lines;