Skip to content

Commit

Permalink
Make driver rundir an absolute path (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp-noaa authored Aug 7, 2024
1 parent 35cee0b commit 2d0046f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uwtools/drivers/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def rundir(self) -> Path:
"""
The path to the component's run directory.
"""
return Path(self.config[STR.rundir])
return Path(self.config[STR.rundir]).absolute()

def taskname(self, suffix: str) -> str:
"""
Expand Down

0 comments on commit 2d0046f

Please sign in to comment.