From f4cd747a4d760600ec9791a95957e993c320ba63 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 1 Jan 2012 19:36:10 -0500 Subject: [PATCH] Skip 'ico' and 'bin' extensions in copyright changes. --- src/tools/copyright.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index 705edaf3ee..79458b551c 100755 --- a/src/tools/copyright.pl +++ b/src/tools/copyright.pl @@ -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; -- 2.40.0