fix paths that I broke when updating codemirror

This commit is contained in:
ansuz
2016-06-23 12:44:11 +02:00
parent 82a9b05d5f
commit b3deb9531d
489 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# Combine existing list of authors with everyone known in git, sort, add header.
tail --lines=+3 AUTHORS > AUTHORS.tmp
git log --format='%aN' >> AUTHORS.tmp
echo -e "List of CodeMirror contributors. Updated before every release.\n" > AUTHORS
sort -u AUTHORS.tmp >> AUTHORS
rm -f AUTHORS.tmp