diff --git a/CONTRIBUTORS b/CONTRIBUTORS new file mode 100644 index 00000000..b9c69f8f --- /dev/null +++ b/CONTRIBUTORS @@ -0,0 +1,29 @@ +BrainDoctor +Bruno +Charlie +Ed +Erwin +Fred +FvDxxx +Herman +James +Joe +MattK +MichaƂ +Paolo +Patrick +Ryan +Scott +Tim +User +Valentin +WoJ +dan +dependabot[bot] +error454 +nvnwater +r4r3 +rarosalion +shakreiner +tlegras +wojtek diff --git a/build/update-contributors.sh b/build/update-contributors.sh new file mode 100755 index 00000000..c17443d2 --- /dev/null +++ b/build/update-contributors.sh @@ -0,0 +1,7 @@ +#1/usr/bin/env bash + +contributors=CONTRIBUTORS +[[ -f "$contributors".tmp ]] && rm -f "$contributors".tmp +git shortlog -s | awk '{print $2}' > "$contributors".tmp +sort -u CONTRIBUTORS.tmp > CONTRIBUTORS +[[ -f "$contributors".tmp ]] && rm -f "$contributors".tmp