Skip to content

Commit

Permalink
fix from() failing if given variable derived from or
Browse files Browse the repository at this point in the history
  • Loading branch information
ssadedin committed Jul 19, 2014
1 parent 4bfa35d commit 048e1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/bpipe/PipelineContext.groovy
Expand Up @@ -1605,7 +1605,7 @@ class PipelineContext {

log.info "Input list to check: $reverseOutputs"

exts = Utils.box(exts)
exts = Utils.box(exts).collect { (it instanceof PipelineOutput || it instanceof PipelineInput) ? it.toString() : it }

Map extTotals = exts.countBy { it }

Expand Down

0 comments on commit 048e1d4

Please sign in to comment.