mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-04-22 15:25:47 -07:00
8 lines
231 B
Bash
Executable File
8 lines
231 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
tail --lines=+3 AUTHORS > AUTHORS.tmp
|
|
git log --format='%aN <%aE>' >> AUTHORS.tmp
|
|
echo "List of xterm.js contributors. Updated before every release.\n" > AUTHORS
|
|
sort -u AUTHORS.tmp >> AUTHORS
|
|
rm -f AUTHORS.tmp
|