diff options
author | Chocobozzz <me@florianbigard.com> | 2018-02-15 19:33:20 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-02-15 19:33:20 +0100 |
commit | 86acad02aa07f7579062722179c4c815ba488344 (patch) | |
tree | 4d30e9328204644e77ae6bd243d9d0c9abb83785 /scripts | |
parent | 02988fdc0bdd345bddf89171d258822cab4229d6 (diff) | |
download | PeerTube-86acad02aa07f7579062722179c4c815ba488344.tar.gz PeerTube-86acad02aa07f7579062722179c4c815ba488344.tar.zst PeerTube-86acad02aa07f7579062722179c4c815ba488344.zip |
Update code contributors list
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' | ||