From 58cc6711bb6b55c9d020698d08f4afe0f3c3411f Mon Sep 17 00:00:00 2001 From: James Seward Date: Sat, 18 May 2019 23:06:59 +0100 Subject: [PATCH] Add CONTRIBUTORS and build script for it --- CONTRIBUTORS | 29 +++++++++++++++++++++++++++++ build/update-contributors.sh | 7 +++++++ 2 files changed, 36 insertions(+) create mode 100644 CONTRIBUTORS create mode 100755 build/update-contributors.sh 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