From fdbc9af51f1aa6883f6ee910e4ab2a1e4cf49b8a Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 16 Mar 2016 15:28:08 -0700 Subject: [PATCH] authors --- AUTHORS.md | 1 - bin/update-authors.sh | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index e5175a92..736dbf5f 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -12,4 +12,3 @@ - Liam Gray #### Generated by bin/update-authors.sh. - diff --git a/bin/update-authors.sh b/bin/update-authors.sh index 172061cf..cd88dfa0 100755 --- a/bin/update-authors.sh +++ b/bin/update-authors.sh @@ -9,12 +9,13 @@ BEGIN { while (<>) { next if $seen{$_}; next if //; + next if //; $seen{$_} = push @authors, "- ", $_; } END { print "# Authors\n\n"; print "#### Ordered by first contribution.\n\n"; print @authors, "\n"; - print "#### Generated by bin/update-authors.sh.\n\n"; + print "#### Generated by bin/update-authors.sh.\n"; } ' > AUTHORS.md