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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2019-08-20 22:40:33 +0300
committerisaacs <i@izs.me>2019-08-20 22:40:33 +0300
commitc9c8d902d8715a850f937664f6d13bf41d9223dd (patch)
tree1c0f4c85e6974d16288dcf6a839efc2fe10df726 /scripts
parent53cf5e93bab0b3620b9b89b41f2de68879e3d70b (diff)
Actually use mailmap file when generating AUTHORS
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-authors.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-authors.sh b/scripts/update-authors.sh
index 75a6e549b..ac7b99137 100755
--- a/scripts/update-authors.sh
+++ b/scripts/update-authors.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-git log --reverse --format='%aN <%aE>' | perl -wnE '
+git log --use-mailmap --reverse --format='%aN <%aE>' | perl -wnE '
BEGIN {
say "# Authors sorted by whether or not they\x27re me";
}