Skip to content

Commit bd018bc

Browse files
committed
Update AUTHORS
1 parent c860717 commit bd018bc

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

AUTHORS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
libASPL authors, ordered by first contribution:
44

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)

scripts/generate-authors.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#! /bin/bash
22
#
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).
44
# If you want to change your appearance in generated file, feel free to send a PR!
55
#
66

7+
set -euo pipefail
8+
79
function find_login() {
810
local github_login="$(curl -s --get "https://api.github.com/search/users" \
911
--data-urlencode "q=$1" \
@@ -111,7 +113,7 @@ function add_if_new() {
111113
local result="${full_name}"
112114
if [ ! -z "${github_login}" ]
113115
then
114-
result="${result} /${github_login}/"
116+
result="${result} \`${github_login}\`"
115117
fi
116118
if [ ! -z "${address}" ]
117119
then

0 commit comments

Comments
 (0)