PeerTube/scripts/generate-code-contributors.sh

8 lines
200 B
Bash
Raw Normal View History

2018-03-27 03:35:12 -05:00
#!/bin/sh
set -eu
2018-02-15 12:33:20 -06:00
curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
2018-04-23 07:50:00 -05:00
jq -r 'map(" * [" + .login + "](" + .url + ")") | .[]' | \
sed 's/api.github.com\/users/github.com/g'