authors.sh 336 B

1234567891011
  1. #!/bin/bash
  2. set -e
  3. SOURCE_DIR=`pwd`
  4. # Generate AUTHORS
  5. echo "Thanks to the following contributors (in alphabetical order):" > ${SOURCE_DIR}/AUTHORS.md
  6. echo "" >> ${SOURCE_DIR}/AUTHORS.md
  7. echo "`git log --pretty=format:'- %an <%ae>' | grep -v dependabot | sort | uniq`" >> ${SOURCE_DIR}/AUTHORS.md
  8. echo "" >> ${SOURCE_DIR}/AUTHORS.md