fix: create parent dirs for docs system lib

This commit is contained in:
Nick Sweeting 2026-07-25 13:48:43 -07:00
parent 80499954fc
commit 8caae75c81
No known key found for this signature in database

View File

@ -385,7 +385,7 @@ def run_snippets(snippet_ids: tuple[str, ...]) -> None:
},
)
system_lib_dir = Path(snippet_env["ABXPKG_LIB_DIR"])
system_lib_dir.mkdir(exist_ok=True)
system_lib_dir.mkdir(parents=True, exist_ok=True)
system_lib_dir.chmod(0o777)
snippet_env["PATH"] = os.pathsep.join(
[