mirror of
https://github.com/streamlink/streamlink
synced 2024-11-01 01:19:33 +01:00
a44174cd40
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.
12 lines
434 B
Bash
Executable File
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
|