Skip to content

Commit

Permalink
Fix configFiles processing in param summary
Browse files Browse the repository at this point in the history
  • Loading branch information
scwatts committed Nov 2, 2024
1 parent 1c1b538 commit 0b10d84
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -419,12 +419,13 @@ Please contact the pipeline maintainer(s) if you see this warning as a user.
if (workflow.container) {
workflowSummary['container'] = workflow.container
}

workflowSummary['launchDir'] = workflow.launchDir
workflowSummary['workDir'] = workflow.workDir
workflowSummary['projectDir'] = workflow.projectDir
workflowSummary['userName'] = workflow.userName
workflowSummary['profile'] = workflow.profile
workflowSummary['configFiles'] = workflow.configFiles.join(', ')
workflowSummary['configFiles'] = workflow.configFiles ? workflow.configFiles.join(', ') : ''

// Get pipeline parameters defined in JSON Schema
def Map paramsSummary = [:]
Expand Down

0 comments on commit 0b10d84

Please sign in to comment.