]> git.proxmox.com Git - mirror_xterm.js.git/blob - bin/generate-authors
higher timeout for test case
[mirror_xterm.js.git] / bin / generate-authors
1 #! /usr/bin/env sh
2
3 tail --lines=+3 AUTHORS > AUTHORS.tmp
4 git log --format='%aN <%aE>' >> AUTHORS.tmp
5 echo "List of xterm.js contributors. Updated before every release.\n" > AUTHORS
6 sort -u AUTHORS.tmp >> AUTHORS
7 rm -f AUTHORS.tmp