]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/generate-code-contributors.sh
Merge branch 'develop' of framagit.org:chocobozzz/PeerTube into develop
[github/Chocobozzz/PeerTube.git] / scripts / generate-code-contributors.sh
CommitLineData
0e4ffb4b
LA
1#!/bin/sh
2
3set -eu
86acad02
C
4
5curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
6 jq -r 'map("\\\n * [" + .login + "](" + .url + ")") | .[]' | \
7 xargs echo | sed 's/api.github.com\/users/github.com/g'