Skip to content

Commit cf79995

Browse files
committed
[bin/authors.sh] Make sure changed name doesn't resurface from git history
Issue codemirror#5037
1 parent d323ad7 commit cf79995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/authors.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Combine existing list of authors with everyone known in git, sort, add header.
22
tail --lines=+3 AUTHORS > AUTHORS.tmp
3-
git log --format='%aN' >> AUTHORS.tmp
3+
git log --format='%aN' | grep -v "Piët Delport" >> AUTHORS.tmp
44
echo -e "List of CodeMirror contributors. Updated before every release.\n" > AUTHORS
55
sort -u AUTHORS.tmp >> AUTHORS
66
rm -f AUTHORS.tmp

0 commit comments

Comments
 (0)