From 8fbd5a8249738f9fb07dd871116ebbeb2c60c5f4 Mon Sep 17 00:00:00 2001 From: Diego Rivera Date: Tue, 27 Aug 2024 15:35:46 -0600 Subject: [PATCH] BUGFIX: wrong variable name --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index b997417..0fd82fc 100644 --- a/functions +++ b/functions @@ -1274,7 +1274,7 @@ __poll_url() local __START="$(date +%s)" waiting "Starting the polling cycle for [${__URL}] (for up to ${__MAX_WAIT_STR})..." - local __NOW="${START}" + local __NOW="${__START}" local __DURATION="0" while true ; do curl ${__INSECURE} -fsSL -m 5 "${__URL}" &>/dev/null && break