You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
352 B

2 months ago
  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