From 76c812794cae8316aab19fed28dff7f83aaa4982 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Tue, 3 Mar 2026 12:24:57 +0100 Subject: [PATCH] fix: correct parameter name from '-passout' to '-password' in make_pfx function --- cert-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cert-functions.sh b/cert-functions.sh index 45dafcc..c4dea7d 100644 --- a/cert-functions.sh +++ b/cert-functions.sh @@ -162,7 +162,7 @@ function make_pfx() { -inkey "$CERT_DIR/${CERT_NAME}_key.pem" \ -in "$CERT_DIR/${CERT_NAME}_cert.pem" \ -certfile "$CERT_DIR/ca_cert.pem" \ - -passout pass:stdin; then + -password pass:stdin; then echo "ERROR: Failed to generate PKCS#12 (PFX) file." >&2 return 1 fi