Force parent subdirs for macos

ns_aware
Gud Boi 2026-02-24 19:48:30 -05:00
parent 93b9a6cd97
commit 920d0043b4
1 changed files with 3 additions and 1 deletions

View File

@ -195,7 +195,9 @@ def get_rt_dir(
rt_dir: Path = rt_dir / subdir
if not rt_dir.is_dir():
rt_dir.mkdir()
rt_dir.mkdir(
parents=True,
)
return rt_dir