Skip to content

Commit

Permalink
Fix JENKINS-14210
Browse files Browse the repository at this point in the history
Allow nested content in a JELLY_SCRIPT
  • Loading branch information
slide committed Jun 25, 2012
1 parent 36cd102 commit 594b9c7
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -17,6 +17,7 @@
* @author Kohsuke Kawaguchi
*/
public class WorkspaceFileContent implements EmailContent {


public String getToken() {
return "FILE";
Expand Down Expand Up @@ -47,7 +48,7 @@ public <P extends AbstractProject<P, B>, B extends AbstractBuild<P, B>> String g
}

public boolean hasNestedContent() {
return false;
return true;
}

public static final String VAR_PATH_NAME = "path";
Expand Down

0 comments on commit 594b9c7

Please sign in to comment.