From 30f20ed40a7fc51cac21bf7e484536901a13c4ff Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 5 May 2025 22:52:56 +0200 Subject: [PATCH] Fix. --- bookworm/scripts/lib/prefixed_msg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookworm/scripts/lib/prefixed_msg b/bookworm/scripts/lib/prefixed_msg index b4a3f30..b91740d 100644 --- a/bookworm/scripts/lib/prefixed_msg +++ b/bookworm/scripts/lib/prefixed_msg @@ -12,7 +12,7 @@ prefixed_msg_no_nl() { _INDENT="${_INDENTOR}" _SEPARATORS=$(echo "${prefixed_msg_OLD_PREFIX}" | sed 's/[^|]//g') while [ ! -z "${_SEPARATORS}" ]; do - _INDENT='${_INDENT}${_INDENTOR}' + _INDENT="${_INDENT}${_INDENTOR}" _SEPARATORS=$(echo "${_SEPARATORS}" | cut -d'|' -f2-) done printf '%s%s%s' "${_INDENT}" "${prefixed_msg_PREFIX}" "$1" -- 2.30.2