Skip to content

Commit

Permalink
update filesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaute Rønningen committed Oct 2, 2023
1 parent 7c27bfe commit f79864b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions produksjonssystem/core/utils/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def run(self, *args, cwd=None, **kwargs):
)
cwd = self.pipeline.dir_in

return Filesystem.run_static(args, cwd, report=self.pipeline.utils.report, **kwargs)
return Filesystem.run_static(*args, cwd, self.pipeline.utils.report, **kwargs)

@staticmethod
def run_static(args,
Expand Down Expand Up @@ -508,7 +508,7 @@ def unzip(report, archive, target):
report.debug(traceback.format_exc(), preformatted=True)
raise e

Filesystem.fix_permissions(target) # type: ignore
Filesystem.fix_permissions(target)

@staticmethod
def ismount(path):
Expand Down

0 comments on commit f79864b

Please sign in to comment.