diff options
author | Bruce Momjian | 2012-01-02 00:36:10 +0000 |
---|---|---|
committer | Bruce Momjian | 2012-01-02 00:36:10 +0000 |
commit | f4cd747a4d760600ec9791a95957e993c320ba63 (patch) | |
tree | 61b543ef204583da6a4d2a92cab8ec34a9c9df2f /src | |
parent | e126958c2efdfc2d60b978d1fc7a780ff647e8ad (diff) |
Skip 'ico' and 'bin' extensions in copyright changes.
Diffstat (limited to 'src')
-rwxr-xr-x | src/tools/copyright.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index 705edaf3ee1..79458b551c4 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; |