Commit a8ab8d0e authored by Bruce Momjian's avatar Bruce Momjian

Add comment about skipping binary files for copyright changes.

parent 631beeac
......@@ -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;
......
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