From 0d39b942626c258dba2f63ba18a49f25265da90f Mon Sep 17 00:00:00 2001 From: konsthol Date: Wed, 28 May 2025 13:23:15 +0300 Subject: [PATCH] Update vars/jenkinsPipelineSkeleton.groovy --- vars/jenkinsPipelineSkeleton.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vars/jenkinsPipelineSkeleton.groovy b/vars/jenkinsPipelineSkeleton.groovy index 41f617b..4d662ee 100644 --- a/vars/jenkinsPipelineSkeleton.groovy +++ b/vars/jenkinsPipelineSkeleton.groovy @@ -37,11 +37,11 @@ def call(String projectName, Map config) { post { success { echo "Build for '${projectName}' was successful!" - sh 'curl -s -H "Cache: no" -d "${projectName} Build Successful" https://ntfy.konsthol.eu/General' + sh "curl -s -H 'Cache: no' -d '${projectName} Build Successful' https://ntfy.konsthol.eu/General" } failure { echo "Build for '${projectName}' failed!" - sh 'curl -s -H "Cache: no" -d "${projectName} Build Failed" https://ntfy.konsthol.eu/General' + sh "curl -s -H 'Cache: no' -d '${projectName} Build Failed' https://ntfy.konsthol.eu/General" } } }