Skip to content

Commit

Permalink
Fix missing variable
Browse files Browse the repository at this point in the history
  • Loading branch information
DriesSchaumont committed Dec 16, 2024
1 parent c7c77e0 commit 49fff61
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ def workflowFactory(Map args, Map defaultWfArgs, Map meta) {
}

def chPassthroughElse = null
if (runElse_){
if (workflowArgs.runElse_){
chPassthroughElse = chPassthrough.map{tup ->
runElse_(tup[0], tup[1])
workflowArgs.runElse_(tup[0], tup[1])
}
} else {
chPassthroughElse = Channel.empty()
Expand Down

0 comments on commit 49fff61

Please sign in to comment.