This commit is contained in:
Feross Aboukhadijeh
2016-03-16 15:28:08 -07:00
parent b9543209aa
commit fdbc9af51f
2 changed files with 2 additions and 2 deletions

View File

@@ -12,4 +12,3 @@
- Liam Gray <liam.r.gray@gmail.com> - Liam Gray <liam.r.gray@gmail.com>
#### Generated by bin/update-authors.sh. #### Generated by bin/update-authors.sh.

View File

@@ -9,12 +9,13 @@ BEGIN {
while (<>) { while (<>) {
next if $seen{$_}; next if $seen{$_};
next if /<support\@greenkeeper.io>/; next if /<support\@greenkeeper.io>/;
next if /<ungoldman\@gmail.com>/;
$seen{$_} = push @authors, "- ", $_; $seen{$_} = push @authors, "- ", $_;
} }
END { END {
print "# Authors\n\n"; print "# Authors\n\n";
print "#### Ordered by first contribution.\n\n"; print "#### Ordered by first contribution.\n\n";
print @authors, "\n"; print @authors, "\n";
print "#### Generated by bin/update-authors.sh.\n\n"; print "#### Generated by bin/update-authors.sh.\n";
} }
' > AUTHORS.md ' > AUTHORS.md