Jenkinsfile fixes

This commit is contained in:
Juan Ferrer 2019-01-11 15:31:14 +01:00
parent 1529f3348b
commit 69f822df70
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -103,7 +103,7 @@ pipeline {
if (!env.GIT_COMMITTER_EMAIL) return if (!env.GIT_COMMITTER_EMAIL) return
mail( mail(
to: env.GIT_COMMITTER_EMAIL, to: env.GIT_COMMITTER_EMAIL,
subject: "Pipeline: ${env.JOB_NAME} (${env.BUILD_NUMBER}): ${currentBuild.result}", subject: "Pipeline: ${env.JOB_NAME} (${env.BUILD_NUMBER}): ${currentBuild.currentResult}",
body: "Check status at ${env.BUILD_URL}" body: "Check status at ${env.BUILD_URL}"
) )
} }