mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted.git
synced 2024-11-17 14:10:49 +00:00
makefile: add a target to run check-github-commit-times.py
This commit is contained in:
parent
cef61885d1
commit
53730d7052
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
@ -25,9 +25,17 @@ syntaxerrors:
|
||||||
@echo -e "\nSyntax errors:"
|
@echo -e "\nSyntax errors:"
|
||||||
@! sed -n -e '/BEGIN SOFTWARE LIST/,/END SOFTWARE LIST/ p' README.md | egrep '\)\(|``|\)`'
|
@! sed -n -e '/BEGIN SOFTWARE LIST/,/END SOFTWARE LIST/ p' README.md | egrep '\)\(|``|\)`'
|
||||||
|
|
||||||
|
#################################
|
||||||
|
|
||||||
contrib:
|
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.md && git shortlog -sne | sed -r 's/^\s*([[:digit:]]*?)\s*?(.*?)/|\1|\2|/' >> AUTHORS.md && mv .mailmap .github/.mailmap
|
||||||
|
|
||||||
|
check_github_commit_dates:
|
||||||
|
python3 tests/check-github-commit-dates.py
|
||||||
|
|
||||||
|
#################################
|
||||||
|
|
||||||
|
|
||||||
add:
|
add:
|
||||||
@#add a new entry
|
@#add a new entry
|
||||||
@printf 'Software name: ' ;\
|
@printf 'Software name: ' ;\
|
||||||
|
|
Loading…
Reference in a new issue