PeerTube/scripts/generate-code-contributors.sh

8 lines
217 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 | \
jq -r 'map("\\\n * [" + .login + "](" + .url + ")") | .[]' | \
xargs echo | sed 's/api.github.com\/users/github.com/g'