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

Add comment about skipping binary files for copyright changes.

parent 631beeac
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
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