From 61df841f258728d0c7256ae0986efb02b182d7f0 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 7 May 2025 15:57:15 +0200 Subject: [PATCH] Update core.func --- misc/core.func | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/misc/core.func b/misc/core.func index a8a5a4f..5b64a3c 100644 --- a/misc/core.func +++ b/misc/core.func @@ -96,11 +96,10 @@ community_curl() { return 1 fi - stop_spinner - echo -e "${INFO}${YW}Curl failed (attempt $attempt of $max_retries). Retrying in ${delay}s...${CL}" >&2 + # inline retry message (overwrite line) + printf "\r\033[K${INFO}${YW}Retry $attempt/$max_retries in ${delay}s...${CL}" >&2 sleep "$delay" ((attempt++)) - msg_info "Retrying: $url" done }