mirror of
https://github.com/coturn/coturn.git
synced 2025-12-24 17:31:00 +01:00
12 lines
336 B
Bash
Executable File
12 lines
336 B
Bash
Executable File
#!/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
|