Skip to content

Commit

Permalink
Implemented JENKINS-24264
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsNielsen committed Aug 14, 2014
1 parent a281b8b commit 467a0fc
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -139,8 +139,13 @@ public String getUrlName() {
}
};


build.addAction(envAction);
success &= bstep.perform(build, launcher, listener);
boolean current = bstep.perform(build, launcher, listener);
if(!current) {
listener.getLogger().println(String.format("Non-zero exit code for test script: %s", ts.getScriptTitle()));
}
success &= current;
build.getActions().remove(envAction);
}
}
Expand Down

0 comments on commit 467a0fc

Please sign in to comment.