mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
14 lines
268 B
Bash
14 lines
268 B
Bash
|
#!/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"
|