From 64dc5f3cd5b4b822862fa71f0312a8a0ee94255c Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 25 Aug 2025 16:03:22 +0200 Subject: [PATCH] Fix. --- trixie/scripts/lib/prefixed_msg.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trixie/scripts/lib/prefixed_msg.sh b/trixie/scripts/lib/prefixed_msg.sh index 72c8dcd..a4ff620 100644 --- a/trixie/scripts/lib/prefixed_msg.sh +++ b/trixie/scripts/lib/prefixed_msg.sh @@ -28,8 +28,8 @@ prefixed_msg_no_nl() { local SEPARATORS SEPARATORS=$(echo "${prefixed_msg_OLD_PREFIX}" | sed 's/[^|]//g') while [ -n "${SEPARATORS}" ]; do - _INDENT="${INDENTOR}${INDENT}" - _SEPARATORS=$(echo -n "${SEPARATORS}" | cut -d'|' -f2-) + INDENT="${INDENTOR}${INDENT}" + SEPARATORS=$(echo -n "${SEPARATORS}" | cut -d'|' -f2-) done printf '%s%s: %s' "${INDENT}" "${prefixed_msg_PREFIX}" "$1" } -- 2.30.2