commit: e4bef9ef213766d656f5226229d93a558a424f69
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 27 00:29:52 2026 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 27 00:29:52 2026 +0000
URL:
https://gitweb.gentoo.org/proj/gentoo-authority-key.git/commit/?id=e4bef9ef
autosign.bash: $? needs quoting, duh
Signed-off-by: Sam James <sam <AT> gentoo.org>
autosign.bash | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/autosign.bash b/autosign.bash
index 65d77c0..ed29159 100755
--- a/autosign.bash
+++ b/autosign.bash
@@ -208,9 +208,9 @@ main() {
refresh_keys
get_ldap | sort -u > ldap.txt
- pipestatus || die 'failure writing ldap.txt: $?'
+ pipestatus || die "failure writing ldap.txt: $?"
get_signed_keys | sort -u > signed.txt
- pipestatus || die 'failure writing signed.txt: $?'
+ pipestatus || die "failure writing signed.txt: $?"
if ! [[ -s ldap.txt ]] ; then
# Avoid revoking every key we trust if our LDAP query fails