We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7481d0 commit 6d29984Copy full SHA for 6d29984
cwltool/docker.py
@@ -229,6 +229,8 @@ def add_writable_file_volume(self,
229
if host_outdir_tgt:
230
# shortcut, just copy to the output directory
231
# which is already going to be mounted
232
+ if not os.path.exists(os.path.dirname(host_outdir_tgt)):
233
+ os.makedirs(os.path.dirname(host_outdir_tgt))
234
shutil.copy(volume.resolved, host_outdir_tgt)
235
else:
236
tmp_dir, tmp_prefix = os.path.split(tmpdir_prefix)
0 commit comments