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