]> git.proxmox.com Git - mirror_xterm.js.git/blame - bin/generate-authors
Make `src/xterm.js` ES2015 and export EventEmitter into its own file
[mirror_xterm.js.git] / bin / generate-authors
CommitLineData
9fa0f00c
PK
1#! /usr/bin/env sh
2
3tail --lines=+3 AUTHORS > AUTHORS.tmp
4git log --format='%aN <%aE>' >> AUTHORS.tmp
5echo "List of xterm.js contributors. Updated before every release.\n" > AUTHORS
6sort -u AUTHORS.tmp >> AUTHORS
7rm -f AUTHORS.tmp