mirror of
https://github.com/anikeen-com/acme.sh.git
synced 2026-03-20 17:16:07 +00:00
fix error message.
This commit is contained in:
9
acme.sh
9
acme.sh
@@ -1473,11 +1473,16 @@ issue() {
|
||||
_savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr"
|
||||
|
||||
|
||||
installcert $Le_Domain "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd" "$Le_RealFullChainPath"
|
||||
if [ "$?" = "9" ] ; then
|
||||
_output="$(installcert $Le_Domain "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd" "$Le_RealFullChainPath" 2>&1)"
|
||||
_ret="$?"
|
||||
if [ "$_ret" = "9" ] ; then
|
||||
#ignore the empty install error.
|
||||
return 0
|
||||
fi
|
||||
if [ "$_ret" != "0" ] ; then
|
||||
_err "$_output"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
renew() {
|
||||
|
||||
Reference in New Issue
Block a user