From: Cédric Ollivier Date: Mon, 26 Jan 2026 16:51:16 +0000 (+0100) Subject: ${msg} -> $msg X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=3ab4f4825897e95dbe7f977496a8e423b94dbc19;p=releng.git ${msg} -> $msg It avoids false errors by jjb. Change-Id: If446d191b54f5ca6773122630a333cfc997b0407 Signed-off-by: Cédric Ollivier --- diff --git a/jjb/releng/releng-jobs.yaml b/jjb/releng/releng-jobs.yaml index 77ac4f62e..3d7a8a92f 100644 --- a/jjb/releng/releng-jobs.yaml +++ b/jjb/releng/releng-jobs.yaml @@ -325,7 +325,7 @@ echo "Reporting lint result...." set -x msg="Found syntax error and/or coding style violation(s) in the files modified by your patchset." - sed -i -e "1s#^#${msg}\n\n#" violation.log + sed -i -e "1s#^#$msg\n\n#" violation.log cmd="gerrit review -p $GERRIT_PROJECT -m \"$(cat violation.log)\" $GERRIT_PATCHSET_REVISION --notify NONE" ssh -o 'PubkeyAcceptedKeyTypes +ssh-rsa' -p 29418 fbot@gerrit.opnfv.org "$cmd"