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 87f3b01 commit d34a0c9Copy full SHA for d34a0c9
cwltool/command_line_tool.py
@@ -252,13 +252,14 @@ def revmap_file(
252
if location.startswith("file://"):
253
f["path"] = uri_file_path(location)
254
else:
255
+ f["location"] = builder.fs_access.join(outdir, f["location"])
256
return f
257
258
if "dirname" in f:
259
del f["dirname"]
260
261
if "path" in f:
- path = cast(str, f["path"])
262
+ path = builder.fs_access.join(builder.outdir, cast(str, f["path"]))
263
uripath = file_uri(path)
264
del f["path"]
265
0 commit comments