We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 942073a commit 2a52f97Copy full SHA for 2a52f97
Makefile
@@ -14,8 +14,10 @@ AUTHORS.md: etc/git/AUTHORS.md.in .mailmap
14
@printf "Generating AUTHORS.md file..."
15
@test -d .git \
16
&& (cat $< > $@ \
17
- && git log --pretty=format:'- %aN' | \
18
- cat etc/git/former-contributors - | LANG=C sort -u >> $@ \
+ && git log --pretty=format:'- %aN' \
+ | cat etc/git/former-contributors - \
19
+ | grep -v dependabot \
20
+ | LANG=C sort -u >> $@ \
21
&& cat etc/git/AUTHORS2.md.in >> $@ \
22
&& printf "FINISHED\n" ; ) \
23
|| printf "FAILED (non-fatal)\n"
0 commit comments