Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nx10 committed May 22, 2024
1 parent 7975ac1 commit 4764399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/styxdefs/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, logger: logging.Logger, dir: pathlib.Path) -> None:

def input_file(self, host_file: InputPathType) -> str:
"""Resolve host input files."""
return str(host_file)
return str(pathlib.Path(host_file).absolute())

def output_file(self, local_file: str, optional: bool = False) -> OutputPathType:
"""Resolve local output files."""
Expand Down

0 comments on commit 4764399

Please sign in to comment.