Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2016-08-06 08:43:28 +0300
committerFeross Aboukhadijeh <feross@feross.org>2016-08-06 08:43:28 +0300
commit9b169003b412375206de5c81d49c2133df572e98 (patch)
tree17ac25a04a2953b98deb4e2dce00d22aad740516 /bin
parent4aa09afd5ce8aaeeb33c3440107fb9736ab9dfe9 (diff)
Improve AUTHORS.md formatting
Diffstat (limited to 'bin')
-rwxr-xr-xbin/update-authors.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/update-authors.sh b/bin/update-authors.sh
index dbc1164..6735eb4 100755
--- a/bin/update-authors.sh
+++ b/bin/update-authors.sh
@@ -1,17 +1,17 @@
#!/bin/sh
# Update AUTHORS.md based on git history.
-git log --reverse --format='%aN <%aE>' | perl -we '
+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>/;
+ 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 {