Skip to content

Commit 2d0046f

Browse files
authored
Make driver rundir an absolute path (#561)
1 parent 35cee0b commit 2d0046f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/uwtools/drivers/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def rundir(self) -> Path:
9696
"""
9797
The path to the component's run directory.
9898
"""
99-
return Path(self.config[STR.rundir])
99+
return Path(self.config[STR.rundir]).absolute()
100100

101101
def taskname(self, suffix: str) -> str:
102102
"""

0 commit comments

Comments
 (0)