Cirrus: set +x before importing key

pull/101/head
Jeremy Rand 3 years ago
parent 39108e700b
commit 7951dde558
No known key found for this signature in database
GPG Key ID: FD7550C2EB800711

@ -63,7 +63,10 @@ if [[ "$SHOULD_BUILD" -eq 1 ]]; then
echo "Configuring signing key..."
export RBM_SIGN_BUILD=1
export RBM_GPG_OPTS="--local-user jeremy@namecoin.org"
# Avoid leaking private key to console
set +x
echo "$SIGN_KEY" | gpg --import
set -x
else
echo "Signing is disabled."
fi

Loading…
Cancel
Save