Skip to content

Commit

Permalink
Merge pull request #5374 from ryoon/posix-shell-portability
Browse files Browse the repository at this point in the history
Fix POSIX shell portability
  • Loading branch information
Neilpang authored Oct 25, 2024
2 parents 5c78a5e + 838a20e commit a003234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,7 @@ _toPkcs() {
else
${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca"
fi
if [ "$?" == "0" ]; then
if [ "$?" = "0" ]; then
_savedomainconf "Le_PFXPassword" "$pfxPassword"
fi

Expand Down

0 comments on commit a003234

Please sign in to comment.