Skip to content

Commit

Permalink
Filter out some duplicate author names in update_authors.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Sep 7, 2016
1 parent e19dfcb commit aa766d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/update_authors.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Combine existing list of authors with everyone known in git, sort, add header.
tail --lines=+3 AUTHORS > AUTHORS.tmp
git log --format='%aN' | grep -v abraidwood >> AUTHORS.tmp
git log --format='%aN' | grep -v abraidwood | grep -v Rich-Harris | grep -v ForbesLindesay >> AUTHORS.tmp
echo -e "List of Acorn contributors. Updated before every release.\n" > AUTHORS
sort -u AUTHORS.tmp >> AUTHORS
rm -f AUTHORS.tmp

0 comments on commit aa766d1

Please sign in to comment.