Commit f4cd747a authored by Bruce Momjian's avatar Bruce Momjian

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

parent e126958c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment