mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted
synced 2024-10-31 23:26:16 +00:00
794490c2bc
* tools: remove obsolete test tooling - tests should now be performed from https://github.com/awesome-selfhosted/awesome-selfhosted-data#maintenance - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/1038 - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/1852 - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/2266 * add a badge pointing to the main issue about unmaintained projects/dead links removal - ref. https://github.com/awesome-selfhosted/awesome-selfhosted/issues/2266
6 lines
281 B
Makefile
Executable File
6 lines
281 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
SHELL = /bin/bash
|
|
# update the AUTHORS.md file
|
|
contrib:
|
|
@mv .github/.mailmap . && printf "|Commits | Author |\n| :---: | --- |\n" > AUTHORS.md && git shortlog -sne | sed -r 's/^\s*([[:digit:]]*?)\s*?(.*?)/|\1|\2|/' >> AUTHORS.md && mv .mailmap .github/.mailmap
|