From 352c52792002dc2efd9e2e6b72982ef3297b68fd Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 24 Apr 2018 18:03:43 -0700 Subject: Move internal scripts from bin/ to scripts/ By convention the bin/ folder is for user-facing command line scripts. Let's use scripts/ for internal scripts that don't need to be published. --- scripts/update-authors.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 scripts/update-authors.sh (limited to 'scripts') diff --git a/scripts/update-authors.sh b/scripts/update-authors.sh new file mode 100755 index 0000000..07c04f5 --- /dev/null +++ b/scripts/update-authors.sh @@ -0,0 +1,23 @@ +#!/bin/sh +# Update AUTHORS.md based on git history. + +git log --reverse --format='%aN (%aE)' | perl -we ' +BEGIN { + %seen = (), @authors = (); +} +while (<>) { + next if $seen{$_}; + next if /(support\@greenkeeper.io)/; + next if /(badger\@gitter.im)/; + next if /(y.ciabaud\@free.fr)/; + next if /(DiegoRBaquero\@users.noreply.github.com)/; + next if /(grunjol\@users.noreply.github.com)/; + $seen{$_} = push @authors, "- ", $_; +} +END { + print "# Authors\n\n"; + print "#### Ordered by first contribution.\n\n"; + print @authors, "\n"; + print "#### Generated by scripts/update-authors.sh.\n"; +} +' > AUTHORS.md -- cgit v1.2.3