1
0
Fork 0
peertube/scripts/generate-code-contributors.sh

8 lines
217 B
Bash
Raw Normal View History

2018-03-27 08:35:12 +00:00
#!/bin/sh
set -eu
2018-02-15 18:33:20 +00: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'