Added double inverted commas

This commit is contained in:
abhishek 2023-11-01 13:50:21 +05:30
parent 745172cba8
commit 5e5c68393f

8
Jenkinsfile vendored
View file

@ -23,14 +23,14 @@ pipeline{
}
post{
success{
mail subject : 'Jenkins job of ${JOB_NAME} of build numer ${BUILD_ID} is passed',
body : 'Click Here to see more details ${BUILD_URL}',
mail subject : "Jenkins job of ${JOB_NAME} of build numer ${BUILD_ID} is passed",
body : "Click Here to see more details ${BUILD_URL}",
from : 'jenkins@outlook.com',
to : 'abhishek16tiwary@gmail.com'
}
failure{
mail subject : 'Jenkins job of ${JOB_NAME} of build numer ${BUILD_ID} is Failed',
body : 'Click Here to see more details ${BUILD_URL}',
mail subject : "Jenkins job of ${JOB_NAME} of build numer ${BUILD_ID} is Failed",
body : "Click Here to see more details ${BUILD_URL}",
from : 'jenkins@outlook.com',
to : 'abhishek16tiwary@gmail.com'
}