- #!/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
|