Issue #2850 : grammar corrections for "exists" and "exist".

This commit is contained in:
Tony Gravagno
2020-06-29 11:29:10 -07:00
parent 71a5f0e84e
commit eca57beec1
8 changed files with 15 additions and 14 deletions

10
acme.sh
View File

@@ -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."