From a8ab8d0eaa96dbaebb646971f8988a3edc28e52c Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 2 Jan 2012 08:48:59 -0500 Subject: [PATCH] Add comment about skipping binary files for copyright changes. --- src/tools/copyright.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index 739f182995..db5a2f023c 100755 --- a/src/tools/copyright.pl +++ b/src/tools/copyright.pl @@ -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;