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:
authorRuy Adorno <ruyadorno@hotmail.com>2022-05-03 19:29:36 +0300
committerGitHub <noreply@github.com>2022-05-03 19:29:36 +0300
commit4e994c5af4af18c9235479d4e43f62f910d36f8b (patch)
treecc98204f6b2c4fc32110bb04e2b1df375a0f5a1d /scripts
parent7a858277171813b37d46a032e49db44c8624f78f (diff)
chore: remove bot from authors (#4833)
Replaces: https://github.com/npm/cli/pull/4814 Co-authored-by: Gar <gar+gh@danger.computer> Co-authored-by: Gar <gar+gh@danger.computer>
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 732ad7d35..3c1990f35 100755
--- a/scripts/update-authors.sh
+++ b/scripts/update-authors.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-git log --use-mailmap --reverse --format='%aN <%aE>' | grep -v "\[bot\]" | perl -wnE '
+git log --use-mailmap --reverse --format='%aN <%aE>' | grep -v "\[bot\]" | grep -v "^npm team" | perl -wnE '
BEGIN {
say "# Authors sorted by whether or not they\x27re me";
}