exclude duplicate author

This commit is contained in:
Feross Aboukhadijeh 2016-03-18 15:09:38 -07:00
parent 4ed7b741aa
commit 5379416bb2

View File

@ -10,6 +10,7 @@ while (<>) {
next if /<support\@greenkeeper.io>/;
next if /<yoann\@atacma.agency>/;
next if /<yciabaud\@users.noreply.github.com>/;
next if /<diegorbaquero\@gmail.com>/;
$seen{$_} = push @authors, "- ", $_;
}
END {