From cbe1eb2cda5ca2cdc5ffd69c36b719a0e73b6517 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 8 Dec 2015 10:06:52 +0100 Subject: [PATCH] fix typo in comment --- letsencrypt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)" -- 2.47.2