From: Oto Šťáva Date: Wed, 27 Mar 2024 13:11:40 +0000 (+0100) Subject: scripts/update-authors: explicit '--no-show-signature' X-Git-Tag: v5.7.2^2~1 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fenvironments%2Fdocs-develop-rele-m8rr9k%2Fdeployments%2F3608;p=thirdparty%2Fknot-resolver.git scripts/update-authors: explicit '--no-show-signature' Fixes the script for users who have `log.showSignature` set to `true` in their git config. --- diff --git a/scripts/update-authors.sh b/scripts/update-authors.sh index fe1d85791..a2ddc2774 100755 --- a/scripts/update-authors.sh +++ b/scripts/update-authors.sh @@ -15,7 +15,7 @@ TEMP_FILE="$(mktemp AUTHORS.XXXXXXXXXX)" # drop all names from the current file sed '/^People who contributed commits to our Git repo are/q' "${AUTHORS_FILE}" > "${TEMP_FILE}" # append to the new file -git log --format="%aN <%aE>" | sort -u | git check-mailmap --stdin | sort -u >> "${TEMP_FILE}" +git log --no-show-signature --format="%aN <%aE>" | sort -u | git check-mailmap --stdin | sort -u >> "${TEMP_FILE}" echo '' >> "${TEMP_FILE}" echo 'Knot Resolver source tree also bundles code and content published by:' >> "${TEMP_FILE}"