Skip to content

Commit

Permalink
fix possible exception when using $output.prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
ssadedin committed Feb 28, 2013
1 parent 46c96cf commit abb8471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/bpipe/PipelineOutput.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ class PipelineOutput {
String getPrefix() {
this.outputUsed = String.valueOf(Utils.first(output))
if(this.outputChangeListener != null)
this.outputChangeListener(this.outputUsed)
this.outputChangeListener(this.outputUsed,null)
return PipelineCategory.getPrefix(this.outputUsed);
}

Expand Down

0 comments on commit abb8471

Please sign in to comment.