From: Simon Ruderich Date: Tue, 8 Dec 2015 09:06:52 +0000 (+0100) Subject: fix typo in comment X-Git-Tag: v0.1.0~164 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbe1eb2cda5ca2cdc5ffd69c36b719a0e73b6517;p=thirdparty%2Fdehydrated.git fix typo in comment --- diff --git a/letsencrypt.sh b/letsencrypt.sh index 1631914..6867274 100755 --- a/letsencrypt.sh +++ b/letsencrypt.sh @@ -209,7 +209,7 @@ sign_domain() { status="$(printf '%s\n' "${result}" | grep -Eo '"status":\s*"[^"]*"' | cut -d'"' -f4)" - # get status until it a result is reached => not pending anymore + # get status until a result is reached => not pending anymore while [[ "${status}" = "pending" ]]; do sleep 1 status="$(_request get "${challenge_uri}" | grep -Eo '"status":\s*"[^"]*"' | cut -d'"' -f4)"