comparison .cms/lib/codemirror/bin/authors.sh @ 0:78edf6b517a0 draft

24.10
author Coffee CMS <info@coffee-cms.ru>
date Fri, 11 Oct 2024 22:40:23 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:78edf6b517a0
1 # Combine existing list of authors with everyone known in git, sort, add header.
2 tail --lines=+3 AUTHORS > AUTHORS.tmp
3 git log --format='%aN' | grep -v "Piƫt Delport" >> AUTHORS.tmp
4 echo -e "List of CodeMirror contributors. Updated before every release.\n" > AUTHORS
5 sort -u AUTHORS.tmp | sed 's/Google Inc\./Google LLC/' >> AUTHORS
6 rm -f AUTHORS.tmp