Skip to content

Commit a23bbe8

Browse files
authored
Merge pull request #4 from jennbriden/patch-1
Fixed extra ' in the parameter references
2 parents ecf1976 + 2ad527e commit a23bbe8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • pipeline-template-examples/templates/simple-java-maven-app

pipeline-template-examples/templates/simple-java-maven-app/Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pipeline {
1818
subject: "SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
1919
body: """<p>SUCCESSFUL: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
2020
<p>Check console output at &QUOT;<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>&QUOT;</p>""",
21-
to: "'${emailRecipient}'",
21+
to: "${emailRecipient}",
2222
from: "buildNotifications@emailaddress.com"
2323
)
2424
}
@@ -29,9 +29,9 @@ pipeline {
2929
subject: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'",
3030
body: """<p>FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
3131
<p>Check console output at &QUOT;<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>&QUOT;</p>""",
32-
to: "'${emailRecipient}'",
32+
to: "${emailRecipient}",
3333
from: "buildNotifications@emailaddress.com"
3434
)
3535
}
3636
}
37-
}
37+
}

0 commit comments

Comments
 (0)