File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
libASPL authors, ordered by first contribution:
4
4
5
- * Victor Gaydov / gavv/ (victor@enise.org )
6
- * Roman Postanciuc / afigegoznaet/ (enrabiar@gmail.com )
7
- * Benjamin Dronen / dronenb/ (benjamin.dronen@gmail.com )
8
- * Hovhannes Tsakanyan / hovhannest/ (hovhannes.ht@gmail.com )
5
+ * Victor Gaydov ` gavv ` (victor@enise.org )
6
+ * Roman Postanciuc ` afigegoznaet ` (enrabiar@gmail.com )
7
+ * Benjamin Dronen ` dronenb ` (benjamin.dronen@gmail.com )
8
+ * Hovhannes Tsakanyan ` hovhannest ` (hovhannes.ht@gmail.com )
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
#
3
- # This script builds a nice list of contributors, as in old good days .
3
+ # This script builds a nice list of contributors (full name, github login, email) .
4
4
# If you want to change your appearance in generated file, feel free to send a PR!
5
5
#
6
6
7
+ set -euo pipefail
8
+
7
9
function find_login() {
8
10
local github_login=" $( curl -s --get " https://api.github.com/search/users" \
9
11
--data-urlencode " q=$1 " \
@@ -111,7 +113,7 @@ function add_if_new() {
111
113
local result=" ${full_name} "
112
114
if [ ! -z " ${github_login} " ]
113
115
then
114
- result=" ${result} / ${github_login} / "
116
+ result=" ${result} \` ${github_login} \` "
115
117
fi
116
118
if [ ! -z " ${address} " ]
117
119
then
You can’t perform that action at this time.
0 commit comments