1
mirror of https://github.com/streamlink/streamlink synced 2024-11-01 01:19:33 +01:00
streamlink/script/authors.sh
Charlie Drage a44174cd40 Add script to generate authors list / update authors
This adds a script to generate authors list based upon the git log. This
also updates the AUTHORS list to a more up-to-date version with everyone
whom has ever committed to the project.
2016-09-23 16:34:47 -04:00

12 lines
434 B
Bash
Executable File

#!/bin/bash
# This file fill generate and output all authors whom have contributed to the project
# to the root dir AUTHORS file.
if [ ! -f AUTHORS ]; then
echo "AUTHORS file not found. Are you not in the root directory?"
else
echo -e "This AUTHORS file is generated by ./script/authors.sh\nThank you to everyone whom has contributed to streamlink / livestreamer.\n\n" > AUTHORS
git log --format='%aN' | sort -u >> AUTHORS
fi