[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/php-mode 2a52f9789e 3/5: Ignore "dependabot" from AUTHORS.
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/php-mode 2a52f9789e 3/5: Ignore "dependabot" from AUTHORS.md |
Date: |
Sun, 17 Dec 2023 07:00:05 -0500 (EST) |
branch: elpa/php-mode
commit 2a52f9789e9ad413bd4788bf4fda2ae7312375af
Author: USAMI Kenta <tadsan@zonu.me>
Commit: USAMI Kenta <tadsan@zonu.me>
Ignore "dependabot" from AUTHORS.md
---
Makefile | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 52665554ee..9b722e9be6 100644
--- a/Makefile
+++ b/Makefile
@@ -14,8 +14,10 @@ AUTHORS.md: etc/git/AUTHORS.md.in .mailmap
@printf "Generating AUTHORS.md file..."
@test -d .git \
&& (cat $< > $@ \
- && git log --pretty=format:'- %aN' | \
- cat etc/git/former-contributors - | LANG=C sort -u >>
$@ \
+ && git log --pretty=format:'- %aN' \
+ | cat etc/git/former-contributors - \
+ | grep -v dependabot \
+ | LANG=C sort -u >> $@ \
&& cat etc/git/AUTHORS2.md.in >> $@ \
&& printf "FINISHED\n" ; ) \
|| printf "FAILED (non-fatal)\n"