diff options
author | nodiscc <nodiscc@gmail.com> | 2023-07-15 17:03:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-15 17:03:07 +0000 |
commit | f1db6c16622f7fa8daa46e6a45dd4bd8acb68a96 (patch) | |
tree | daa56581cc254b2ab098159f612dbd184ba73119 /Makefile | |
parent | Pull Request template: require forks to provide a list of differences to the ... (diff) | |
parent | update list of contributors (make contrib) (diff) | |
download | awesome-selfhosted-f1db6c16622f7fa8daa46e6a45dd4bd8acb68a96.tar.gz awesome-selfhosted-f1db6c16622f7fa8daa46e6a45dd4bd8acb68a96.zip |
Merge pull request #4018 from awesome-selfhosted/authors-plaintext
tools/authors: use plaintext instead of markdown for the authors file
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/usr/bin/make -f SHELL = /bin/bash -# update the AUTHORS.md file +# update the AUTHORS 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 + @mv .github/.mailmap . && printf "Commits|Author\n-------|---------------------------------------------------\n" > AUTHORS && git shortlog -sne >> AUTHORS && mv .mailmap .github/.mailmap |