Skip to content

Commit 83b0882

Browse files
jfennickmr-c
authored andcommitted
added PermissionError
1 parent f5a7412 commit 83b0882

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

cwltool/job.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,11 @@ def relink_initialworkdir(
106106
except PermissionError:
107107
pass
108108
elif os.path.isdir(host_outdir_tgt) and not vol.resolved.startswith("_:"):
109-
ensure_writable(host_outdir_tgt, include_root=True)
110-
shutil.rmtree(host_outdir_tgt)
109+
try:
110+
ensure_writable(host_outdir_tgt, include_root=True)
111+
shutil.rmtree(host_outdir_tgt)
112+
except PermissionError:
113+
pass
111114
if not vol.resolved.startswith("_:"):
112115
try:
113116
os.symlink(vol.resolved, host_outdir_tgt)

0 commit comments

Comments
 (0)