Skip to content

Commit 12bd263

Browse files
committed
Fix the script definition in the Jenkinsfile
1 parent 71f1fd3 commit 12bd263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/release/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ pipeline {
217217
withEnv([
218218
"DISABLE_REMOTE_GRADLE_CACHE=true"
219219
]) {
220-
def ghReleaseNote = sh('realpath -e github_release_notes.md 2>/dev/null', returnStdout: true).trim()
220+
def ghReleaseNote = sh(script: 'realpath -e github_release_notes.md 2>/dev/null', returnStdout: true).trim()
221221
sh ".release/scripts/publish.sh -j ${ghReleaseNote != '' ? '--notes=' + ghReleaseNote : ''} ${env.SCRIPT_OPTIONS} ${env.PROJECT} ${env.RELEASE_VERSION} ${env.DEVELOPMENT_VERSION} ${env.GIT_BRANCH}"
222222
}
223223
}

0 commit comments

Comments
 (0)