fix syntax error

This commit is contained in:
Morgan McMillian 2023-11-10 12:48:44 -08:00
parent d6e050ecf9
commit c147d35546

6
Jenkinsfile vendored
View file

@ -25,9 +25,9 @@ pipeline {
} }
failure { failure {
jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Failed', notifySuspects: true, targets: "${CHAT}" jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Failed', notifySuspects: true, targets: "${CHAT}"
mail to: "${MAIL}" mail to: "${MAIL}",
// subject: "Build Failed: ${currentBuild.fullDisplayName}", subject: "Build Failed: ${currentBuild.fullDisplayName}",
// body: "Something is wrong with ${env.BUILD_URL}" body: "Something is wrong with ${env.BUILD_URL}"
} }
} }
} }