summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsigncsr.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/signcsr.sh b/signcsr.sh
index 8869148..98392bd 100755
--- a/signcsr.sh
+++ b/signcsr.sh
@@ -34,7 +34,7 @@ if [[ "$1" =~ \.spkac$ ]]; then # SPKAC HTML5 <keygen> standard
openssl ca -config "$OPENSSL_CONFIG" -spkac "$1" -notext
else # x509 CSR
openssl req -in "$1" -text # print key size
- openssl ca -config "$OPENSSL_CONFIG" -in "$1"
+ openssl ca -config "$OPENSSL_CONFIG" -in "$1" -notext
fi
if [ -e "$CA"/certs/"$SERIAL".pem ]; then # openssl lacks useful exit status codes, so we check to see if it actually did anything instead.