Skip to content

Commit ccd545f

Browse files
author
Anton Khodak
authored
Merge branch 'master' into fix/js-expr-for-null-inputs
2 parents daaaa53 + 0c58f48 commit ccd545f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def add_volumes(self, pathmapper, runtime):
341341
ensure_writable(host_outdir_tgt)
342342
elif vol.type == "WritableDirectory":
343343
if vol.resolved.startswith("_:"):
344-
os.makedirs(vol.target, 0o0755)
344+
os.makedirs(host_outdir_tgt, 0o0755)
345345
else:
346346
if self.inplace_update:
347347
runtime.append(u"--volume=%s:%s:rw" % (

0 commit comments

Comments
 (0)