From c147d35546ebd9f7a38796ccf7e86d0d6c438691 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Fri, 10 Nov 2023 12:48:44 -0800 Subject: [PATCH] fix syntax error --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1826bb7..55d7f76 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,9 +25,9 @@ pipeline { } failure { jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Build Failed', notifySuspects: true, targets: "${CHAT}" - mail to: "${MAIL}" - // subject: "Build Failed: ${currentBuild.fullDisplayName}", - // body: "Something is wrong with ${env.BUILD_URL}" + mail to: "${MAIL}", + subject: "Build Failed: ${currentBuild.fullDisplayName}", + body: "Something is wrong with ${env.BUILD_URL}" } } }