We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529337a commit e824abfCopy full SHA for e824abf
devtools/credit
@@ -20,12 +20,14 @@ fi
20
git log "$PREV_TAG".. --format="%an|%ae" | sort | uniq -c | sort -rn > /tmp/authors.$$
21
sed -n 's/.*[Nn]amed by //p' < CHANGELOG.md | sed 's/(.*)//' | tr -dc '[:alnum:][:space:]' > /tmp/namers.$$
22
git log "$PREV_TAG" --format="%an|%ae" | sort -u > /tmp/prev-authors.$$
23
+# Include aliases
24
+printf "Alex Myers\nShahanaFarooqui\nMatt Whitlock\n" >> /tmp/namers.$$
25
26
NAMER=""
27
BACKUP_NAMER=""
28
TOTAL=0
29
while read LINE; do
- COUNT=${LINE%% [! 0123456789]*}
30
+ COUNT=$(echo "$LINE" | sed -r "s/[^0-9].*//")
31
TOTAL=$((TOTAL + COUNT))
32
LINE=${LINE#*[1234567890] }
33
NAME=${LINE%%|*}
0 commit comments