OpenAsar/contributors.sh
2023-05-04 04:24:32 +00:00

13 lines
268 B
Bash
Executable file

#!/bin/bash -e
file="$(git rev-parse --show-toplevel)/CONTRIBUTORS"
cat <<EOF > "$file"
# People who can (and typically have) contributed to this repository.
#
# This script is generated by $(basename "$0")
#
EOF
git log --format='%aN <%aE>' | sort -uf >> "$file"