From eb6abf035165820a0bfdfac0c9e4432369716a20 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Mon, 12 May 2025 13:55:23 +0200 Subject: [PATCH] Fix msg_warn --- misc/core.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/core.func b/misc/core.func index 7deffe5..437cb3e 100644 --- a/misc/core.func +++ b/misc/core.func @@ -321,7 +321,7 @@ msg_error() { msg_warn() { local msg="${1:-Warning}" stop_spinner - printf "\r\e[2K%s %b\n" "${INFO}" "${YWB}${msg}${CL}" >&2 + printf "\r\e[2K%s %b\n" "${INFO}" "${YWB}${msg}" >&2 # Remove from shown messages to allow it to be shown again unset MSG_INFO_SHOWN["$msg"]