Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-sb-devops
Commits
04610781
Unverified
Commit
04610781
authored
5 years ago
by
kaliraja
Committed by
GitHub
5 years ago
Browse files
Options
Download
Patches
Plain Diff
fix: adding str length
parent
4f049ba5
release-3.4.0-shared-lib
release-2.7.0-shared-lib
release-2.6.0-shared-lib
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vars/email_notify.groovy
+1
-1
vars/email_notify.groovy
with
1 addition
and
1 deletion
+1
-1
vars/email_notify.groovy
+
1
−
1
View file @
04610781
...
@@ -8,7 +8,7 @@ def call(String email_list = "") {
...
@@ -8,7 +8,7 @@ def call(String email_list = "") {
String
ANSI_YELLOW
=
"\u001B[33m"
String
ANSI_YELLOW
=
"\u001B[33m"
println
"Hello"
+
email_list
println
"Hello"
+
email_list
if
(
email_list
!=
""
){
if
(
email_list
.
length
()
>
0
){
emailext
body:
'''$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS: Check console output at $BUILD_URL to view the results.'''
,
subject:
'$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!'
,
to:
email_group
emailext
body:
'''$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS: Check console output at $BUILD_URL to view the results.'''
,
subject:
'$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!'
,
to:
email_group
return
return
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets