From a349d5370abcf26a7cef825b40e62629fbd28255 Mon Sep 17 00:00:00 2001 From: Ben Sherman Date: Tue, 16 Sep 2025 09:34:38 -0500 Subject: [PATCH] Fix false error with storeDir and val outputs Signed-off-by: Ben Sherman --- .../src/main/groovy/nextflow/processor/TaskProcessor.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nextflow/src/main/groovy/nextflow/processor/TaskProcessor.groovy b/modules/nextflow/src/main/groovy/nextflow/processor/TaskProcessor.groovy index 5f8e552a0e..a6718402ee 100644 --- a/modules/nextflow/src/main/groovy/nextflow/processor/TaskProcessor.groovy +++ b/modules/nextflow/src/main/groovy/nextflow/processor/TaskProcessor.groovy @@ -866,7 +866,7 @@ class TaskProcessor { final ctx = task.context def invalid = task.getOutputs().keySet().any { if( it instanceof ValueOutParam ) { - return !ctx.containsKey(it.name) + return false } if( it instanceof FileOutParam ) { return false