fix: refs #8715 update echo statement in Jenkinsfile to remove comment from diffOutput
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-03-27 13:34:47 +01:00
parent 1992610533
commit a34579e718
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -85,7 +85,7 @@ pipeline {
script: "git fetch origin ${TARGET_BRANCH} && git diff --name-only origin/${TARGET_BRANCH}", script: "git fetch origin ${TARGET_BRANCH} && git diff --name-only origin/${TARGET_BRANCH}",
returnStdout: true returnStdout: true
).trim().split('\n') ).trim().split('\n')
echo "DIFF: ${diffOutput}" // diffOutput echo "DIFF: ${diffOutput}"
def hasChangelog = diffOutput.any { it == 'CHANGELOG.md' } def hasChangelog = diffOutput.any { it == 'CHANGELOG.md' }
if (!hasChangelog) { if (!hasChangelog) {