Skip to content

Commit

Permalink
Change caching pathmapper to respect the pathmapper factory
Browse files Browse the repository at this point in the history
  • Loading branch information
stxue1 authored and mr-c committed Jan 10, 2025
1 parent baa668b commit a67c898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cwltool/command_line_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,10 +807,10 @@ def job(
cachecontext.tmpdir = "/tmp" # nosec
cachecontext.stagedir = "/stage"
cachebuilder = self._init_job(job_order, cachecontext)
cachebuilder.pathmapper = PathMapper(
cachebuilder.pathmapper = self.make_path_mapper(
cachebuilder.files,
runtimeContext.basedir,
cachebuilder.stagedir,
runtimeContext,
separateDirs=False,
)
_check_adjust = partial(check_adjust, self.path_check_mode.value, cachebuilder)
Expand Down

0 comments on commit a67c898

Please sign in to comment.