Skip to content

Commit a22bed6

Browse files
mr-ctetron
authored andcommitted
Fix file literals when we aren't using Docker (#529)
1 parent 2f5ddf4 commit a22bed6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def stageFiles(pm, stageFunc=None, ignoreWritable=False, symLink=True):
235235
os.makedirs(p.target, 0o0755)
236236
else:
237237
shutil.copytree(p.resolved, p.target)
238-
elif p.type == "CreateFile" and not ignoreWritable:
238+
elif p.type == "CreateFile":
239239
with open(p.target, "wb") as n:
240240
n.write(p.resolved.encode("utf-8"))
241241

0 commit comments

Comments
 (0)