Release Jenkinsfile: fix incorrect 'sh' call

This commit is contained in:
Yoann Rodière 2024-06-12 11:34:39 +02:00 committed by Christian Beikov
parent 3837a26188
commit 0c35f33866
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ pipeline {
env.SCRIPT_OPTIONS = params.RELEASE_DRY_RUN ? "-d" : ""
// Determine version id to check if Jira version exists
sh(script: ".release/scripts/determine-jira-version-id.sh ${env.JIRA_KEY} ${versionBasis}", returnStdout: true)
sh ".release/scripts/determine-jira-version-id.sh ${env.JIRA_KEY} ${versionBasis}"
}
}
}