mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2026-01-14 12:12:14 +08:00
Issue #2850 : grammar corrections for "exists" and "exist".
This commit is contained in:
10
acme.sh
10
acme.sh
@@ -188,28 +188,28 @@ _dlg_versions() {
|
||||
if _exists "${ACME_OPENSSL_BIN:-openssl}"; then
|
||||
${ACME_OPENSSL_BIN:-openssl} version 2>&1
|
||||
else
|
||||
echo "$ACME_OPENSSL_BIN doesn't exists."
|
||||
echo "$ACME_OPENSSL_BIN doesn't exist."
|
||||
fi
|
||||
|
||||
echo "apache:"
|
||||
if [ "$_APACHECTL" ] && _exists "$_APACHECTL"; then
|
||||
$_APACHECTL -V 2>&1
|
||||
else
|
||||
echo "apache doesn't exists."
|
||||
echo "apache doesn't exist."
|
||||
fi
|
||||
|
||||
echo "nginx:"
|
||||
if _exists "nginx"; then
|
||||
nginx -V 2>&1
|
||||
else
|
||||
echo "nginx doesn't exists."
|
||||
echo "nginx doesn't exist."
|
||||
fi
|
||||
|
||||
echo "socat:"
|
||||
if _exists "socat"; then
|
||||
socat -V 2>&1
|
||||
else
|
||||
_debug "socat doesn't exists."
|
||||
_debug "socat doesn't exist."
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -5519,7 +5519,7 @@ revoke() {
|
||||
fi
|
||||
fi
|
||||
else
|
||||
_info "Domain key file doesn't exists."
|
||||
_info "Domain key file doesn't exist."
|
||||
fi
|
||||
|
||||
_info "Try account key."
|
||||
|
||||
Reference in New Issue
Block a user