Skip 'ico' and 'bin' extensions in copyright changes.

This commit is contained in:
Bruce Momjian 2012-01-01 19:36:10 -05:00
parent e126958c2e
commit f4cd747a4d
1 changed files with 1 additions and 0 deletions

View File

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