mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-12-02 13:29:23 -06:00
8 lines
200 B
Bash
Executable File
8 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
|
|
jq -r 'map(" * [" + .login + "](" + .url + ")") | .[]' | \
|
|
sed 's/api.github.com\/users/github.com/g'
|