From: Christian Heller Date: Mon, 25 Aug 2025 14:03:22 +0000 (+0200) Subject: Fix. X-Git-Url: https://plomlompom.com/repos/blog?a=commitdiff_plain;h=64dc5f3cd5b4b822862fa71f0312a8a0ee94255c;p=config Fix. --- 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" }