Merge pull request #5374 from ryoon/posix-shell-portability
Fix POSIX shell portability
This commit is contained in:
commit
a00323412b
2
acme.sh
2
acme.sh
@ -1442,7 +1442,7 @@ _toPkcs() {
|
|||||||
else
|
else
|
||||||
${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca"
|
${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca"
|
||||||
fi
|
fi
|
||||||
if [ "$?" == "0" ]; then
|
if [ "$?" = "0" ]; then
|
||||||
_savedomainconf "Le_PFXPassword" "$pfxPassword"
|
_savedomainconf "Le_PFXPassword" "$pfxPassword"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user