From d3531c39351f8db890ed33809de9e08a1fb71415 Mon Sep 17 00:00:00 2001 From: Paul Caskey Date: Mon, 26 Nov 2018 22:52:56 +0000 Subject: [PATCH] fix notification in Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 51d6e20..4c4745c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -95,7 +95,7 @@ node('windows') { stage 'Notify' - //slackSend color: 'good', message: "$maintainer/$imagename:$tag pushed to DockerHub" + slackSend color: 'good', message: "$maintainer/$imagename:$tag pushed to DockerHub" } @@ -112,6 +112,6 @@ def imagename() { def handleError(String message){ echo "${message}" currentBuild.setResult("FAILED") - //slackSend color: 'danger', message: "${message}" + slackSend color: 'danger', message: "${message}" bat exit 1 }