From: Michał Kępień Date: Wed, 24 Jun 2026 08:04:06 +0000 (+0200) Subject: Fix formatting of autorebase failure notifications X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d6390b8047426d2fb0b1f46892ffb380af6c835;p=thirdparty%2Fbind9.git Fix formatting of autorebase failure notifications Using a plain "echo" command does not turn "\n" into newline characters, breaking the formatting of the Zulip notifications sent upon autorebase failures. Fix by using "echo -e" instead, which enables interpreting backslash sequences in the provided input. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 937dc75af33..3c67ccbae52 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2694,7 +2694,7 @@ merged-metadata: MSG="${MSG}\n**Job**: ${CI_JOB_URL}" MSG="${MSG}\n**Reason**: ${REASON}" MSG="${MSG}${REASON_DETAILS}" - echo "$MSG" > message.txt + echo -e "$MSG" > message.txt - > "$CI_PROJECT_DIR"/bind9-qa/releng/message_zulip.py --message message.txt --channel bind9-team --topic 'Autorebase errors'