AUTHORS.md: exclude duplicate author

This commit is contained in:
Feross Aboukhadijeh
2016-03-21 23:34:32 -07:00
parent 475ef8c6d0
commit 7f7a395d67

View File

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