Skip to content

Commit

Permalink
FIX JENKINS-16983
Browse files Browse the repository at this point in the history
  • Loading branch information
slide committed Mar 1, 2013
1 parent 2cbd924 commit c58234a
Showing 1 changed file with 8 additions and 5 deletions.
Expand Up @@ -80,8 +80,10 @@ try {
def mbuilds = build.moduleBuilds
if(mbuilds != null) { %>
<TABLE width="100%">
<TR><TD class="bg1"><B>BUILD ARTIFACTS</B></TD></TR>
<% mbuild.each() { m -> %>
<TR><TD class="bg1"><B>BUILD ATRIFACTS</B></TD></TR>
<%
try {
mbuild.each() { m -> %>
<TR><TD class="bg2"><B>${m.key.displayName}</B></TD></TR>
<% m.value.each() { mvnbld ->
def artifactz = mvnbld.artifacts
Expand All @@ -97,13 +99,14 @@ try {
</TR>
<% }
}
}
} catch(e) {
// we don't do anything
} %>
</TABLE>
<BR/>
<% }
} catch(e) {
// we don't do anything
} %>
%>

<!-- CONSOLE OUTPUT -->
<% if(build.result==hudson.model.Result.FAILURE) { %>
Expand Down

0 comments on commit c58234a

Please sign in to comment.