From 3db4479cd0b5637db70c89af5ee23ef9e84c4c0b Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 4 Jul 2025 10:18:54 +0200 Subject: [PATCH] Update core.func --- misc/core.func | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/misc/core.func b/misc/core.func index 79c90eb1..b1dda6d3 100644 --- a/misc/core.func +++ b/misc/core.func @@ -350,13 +350,7 @@ msg_ok() { local msg="$1" if [[ "${VERBOSE:-no}" != "no" || "${var_os:-}" == "alpine" || ! -t 2 ]]; then local CHECK="${TAB}✔️${TAB}" - local PREV="${SPINNER_MSG:-}" - - if [[ -n "$PREV" && "$msg" == "$PREV" ]]; then - printf "\r\e[2K%s %b\n" "$CHECK" "${GN}${msg}${CL}" >&2 - else - printf "%s %b\n" "$CHECK" "${GN}${msg}${CL}" >&2 - fi + printf "\r\e[2K%s %b\n" "$CHECK" "${GN}${msg}${CL}" >&2 else echo -e "${BFR:-} ${CM:-✔️} ${GN}${msg}${CL}" fi