Skip to content

Commit cda467d

Browse files
author
Anton Khodak
committed
Merge branch 'master' into singularity-support
# Conflicts: # cwltool/job.py
1 parent 7427030 commit cda467d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

cwltool/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def add_volumes(self, pathmapper, runtime):
159159
ensure_writable(host_outdir_tgt)
160160
elif vol.type == "WritableDirectory":
161161
if vol.resolved.startswith("_:"):
162-
os.makedirs(vol.target, 0o0755)
162+
os.makedirs(host_outdir_tgt, 0o0755)
163163
else:
164164
if self.inplace_update:
165165
runtime.append(u"--volume=%s:%s:rw" % (

cwltool/job.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,6 @@ def create_runtime(self, env, rm_container=True, **kwargs):
324324
# type: (MutableMapping[Text, Text], bool, **Any) -> List
325325
pass
326326

327-
328327
def run(self, pull_image=True, rm_container=True,
329328
rm_tmpdir=True, move_outputs="move", **kwargs):
330329
# type: (bool, bool, bool, Text, **Any) -> None

0 commit comments

Comments
 (0)