1
0
mirror of https://github.com/hiskang/acme.sh synced 2025-06-15 11:56:24 +00:00
This commit is contained in:
neil 2016-04-05 21:17:27 +08:00
commit 615cb36029

6
le.sh
View File

@ -1363,13 +1363,13 @@ installcert() {
fi
if [ "$Le_RealCACertPath" ] ; then
if [ -f "$Le_RealCACertPath" ] ; then
cp -p "$Le_RealCACertPath" "$Le_RealCACertPath".bak
fi
if [ "$Le_RealCACertPath" == "$Le_RealCertPath" ] ; then
echo "" >> "$Le_RealCACertPath"
cat "$CA_CERT_PATH" >> "$Le_RealCACertPath"
else
if [ -f "$Le_RealCACertPath" ] ; then
cp -p "$Le_RealCACertPath" "$Le_RealCACertPath".bak
fi
cat "$CA_CERT_PATH" > "$Le_RealCACertPath"
fi
fi