Skip to content

Commit dd77756

Browse files
authored
Retain "outdir" in WorkflowJob.job.
Otherwise, the `--tmp-outdir-prefix` option passed on the command line is not respected, and outputs are instead written to the system temp directory.
1 parent 15039a4 commit dd77756

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

cwltool/workflow.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,9 +438,6 @@ def job(self, joborder, output_callback, **kwargs):
438438
self.state = {}
439439
self.processStatus = "success"
440440

441-
if "outdir" in kwargs:
442-
del kwargs["outdir"]
443-
444441
for e, i in enumerate(self.tool["inputs"]):
445442
with SourceLine(self.tool["inputs"], e, WorkflowException):
446443
iid = shortname(i["id"])

0 commit comments

Comments
 (0)