Skip to content
Snippets Groups Projects
Commit 3a8e1640 authored by Matt Traudt's avatar Matt Traudt
Browse files

Add AUTHORS.md and its update script

parent 018aba9a
No related branches found
No related tags found
No related merge requests found
The following people have contributed to Simple Bandwidth Scanner.
Thank you for helping make Tor better.
* Matt Traudt
* juga0
*Last updated: 2018-04-02 on 018aba9*
#!/usr/bin/env bash
# Add <%aE> to the format string to get emails too
AUTHORS=$(git log --format='%aN' | sort -u |
while read LINE
do
printf "* $LINE\n"
done
)
DATE=$(date +%Y-%m-%d)
COMMIT=$(git log -n 1 --format='%h')
cat << EOF
The following people have contributed to Simple Bandwidth Scanner.
Thank you for helping make Tor better.
$AUTHORS
*Last updated: $DATE on $COMMIT*
EOF
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment