]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
scripts/update-authors: explicit '--no-show-signature' docs-develop-rele-m8rr9k/deployments/3608 docs-develop-rele-m8rr9k/deployments/3610
authorOto Šťáva <oto.stava@nic.cz>
Wed, 27 Mar 2024 13:11:40 +0000 (14:11 +0100)
committerOto Šťáva <oto.stava@nic.cz>
Wed, 27 Mar 2024 13:11:40 +0000 (14:11 +0100)
Fixes the script for users who have `log.showSignature` set to `true` in
their git config.

scripts/update-authors.sh

index fe1d85791a0567a300e0e648f5bf8143fe1cc997..a2ddc2774e1623229b03e372bbb641d61cee527e 100755 (executable)
@@ -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}"