mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted
synced 2024-11-10 05:20:36 +03:00
1dee4d9d38
- move the authors file to AUTHORS as recommended by https://www.gnu.org/prep/maintain/html_node/Recording-Contributors.html - simplifies tooling and reduces the risk of invalid markdown injection from a contributor's email address/name
6 lines
260 B
Makefile
Executable File
6 lines
260 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
SHELL = /bin/bash
|
|
# update the AUTHORS file
|
|
contrib:
|
|
@mv .github/.mailmap . && printf "Commits|Author\n-------|---------------------------------------------------\n" > AUTHORS && git shortlog -sne >> AUTHORS && mv .mailmap .github/.mailmap
|