mirror of
https://git.proxmox.com/git/mirror_xterm.js
synced 2025-11-02 16:57:29 +00: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
|