diff --git a/update-keys b/update-keys
index 442ef7222a8df337f3a94dbb527cc8340157a62f..707752bc443fc6acc1b5f28eab36b7cd5056bfb9 100755
--- a/update-keys
+++ b/update-keys
@@ -45,7 +45,7 @@ while read -ra data; do
 	printf 'clean\nquit\ny\n' | \
 		${GPG} --command-fd 0 --edit-key ${keyid}
 	if ! ${GPG} --list-keys --with-colons ${keyid} 2>/dev/null | grep -q '^pub:f:'; then
-		${GPG} --armor --no-emit-version --export ${keyid} >> master-revoked/${username}.asc
+		${GPG} --armor --no-emit-version --export-options export-minimal --export ${keyid} >> master-revoked/${username}.asc
 		echo "${keyid}" >> archlinux-revoked
 	else
 		echo "key is still fully trusted: ${keyid} ${username}"
@@ -75,7 +75,7 @@ while read -ra data; do
 	printf 'clean\nquit\ny\n' | \
 		${GPG} --command-fd 0 --edit-key ${keyid}
 	if ! ${GPG} --list-keys --with-colons ${keyid} 2>/dev/null | grep -q '^pub:f:'; then
-		${GPG} --armor --no-emit-version --export ${keyid} >> packager-revoked/${username}.asc
+		${GPG} --armor --no-emit-version --export-options export-minimal --export ${keyid} >> packager-revoked/${username}.asc
 		echo "${keyid}" >> archlinux-revoked
 	else
 		echo "key is still fully trusted: ${keyid} ${username}"