diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/generate-code-contributors.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/generate-code-contributors.sh b/scripts/generate-code-contributors.sh new file mode 100755 index 000000000..eb94d418d --- /dev/null +++ b/scripts/generate-code-contributors.sh | |||
@@ -0,0 +1,5 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \ | ||
4 | jq -r 'map("\\\n * [" + .login + "](" + .url + ")") | .[]' | \ | ||
5 | xargs echo | sed 's/api.github.com\/users/github.com/g' | ||