mirror of https://github.com/coturn/coturn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
336 B
11 lines
336 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SOURCE_DIR=`pwd`
|
|
|
|
# Generate AUTHORS
|
|
echo "Thanks to the following contributors (in alphabetical order):" > ${SOURCE_DIR}/AUTHORS.md
|
|
echo "" >> ${SOURCE_DIR}/AUTHORS.md
|
|
echo "`git log --pretty=format:'- %an <%ae>' | grep -v dependabot | sort | uniq`" >> ${SOURCE_DIR}/AUTHORS.md
|
|
echo "" >> ${SOURCE_DIR}/AUTHORS.md
|
|
|