aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/generate-code-contributors.sh
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-06-22 17:06:32 +0200
committerChocobozzz <me@florianbigard.com>2018-06-22 17:08:44 +0200
commit92d83c6a78e86c66a55958f8e36a7f2e123efdf8 (patch)
treee03e146ec133b84a4891648f4d77dc552fa0b023 /scripts/generate-code-contributors.sh
parentcd080b1a6b17727633cb42bd18d39eb3f7a9e030 (diff)
downloadPeerTube-92d83c6a78e86c66a55958f8e36a7f2e123efdf8.tar.gz
PeerTube-92d83c6a78e86c66a55958f8e36a7f2e123efdf8.tar.zst
PeerTube-92d83c6a78e86c66a55958f8e36a7f2e123efdf8.zip
Fix git credits
Diffstat (limited to 'scripts/generate-code-contributors.sh')
-rwxr-xr-xscripts/generate-code-contributors.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/generate-code-contributors.sh b/scripts/generate-code-contributors.sh
deleted file mode 100755
index 46bf86234..000000000
--- a/scripts/generate-code-contributors.sh
+++ /dev/null
@@ -1,27 +0,0 @@
1#!/bin/sh
2
3set -eu
4
5echo -e "# Code\n"
6
7curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
8 jq -r 'map(" * [" + .login + "](" + .url + ")") | .[]' | \
9 sed 's/api.github.com\/users/github.com/g'
10
11###################################################
12
13echo -e "\n\n# Translations\n"
14
15curl -s \
16 -H "Accept: application/json" \
17 -H "X-Auth-User: $(grep trad.framasoft.org.username ~/.config/zanata.ini | sed 's@.*=@@')" \
18 -H "X-Auth-Token: $(grep trad.framasoft.org.key ~/.config/zanata.ini | sed 's@.*=@@')" \
19 "https://trad.framasoft.org/zanata/rest/project/peertube/version/develop/contributors/2018-01-01..$(date +%Y-%m-%d)" \
20 | jq -r 'map(" * [" + .username + "](https://trad.framasoft.org/zanata/profile/view/" + .username + ")") | .[]'
21
22###################################################
23
24echo -e "\n\n# Design\n"
25
26echo -e "By [Olivier Massain](https://twitter.com/omassain)\n"
27echo -e "Icons from [Robbie Pearce](https://robbiepearce.com/softies/)" \ No newline at end of file