Skip to content

Commit ce83446

Browse files
authored
Merge branch 'master' into generation_warn
2 parents a896e2a + a22bed6 commit ce83446

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)