Skip to content
Snippets Groups Projects
Commit f4cd747a authored by Bruce Momjian's avatar Bruce Momjian
Browse files

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

parent e126958c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment