]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/generate-code-contributors.sh
Don't add a dot after the url in forgot password email
[github/Chocobozzz/PeerTube.git] / scripts / generate-code-contributors.sh
1 #!/bin/sh
2
3 set -eu
4
5 curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
6 jq -r 'map("\\\n * [" + .login + "](" + .url + ")") | .[]' | \
7 xargs echo | sed 's/api.github.com\/users/github.com/g'