From 8caae75c819565d2709ad822009b5eed87cee971 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 25 Jul 2026 13:48:43 -0700 Subject: [PATCH] fix: create parent dirs for docs system lib --- docs/test_codeblocks_manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/test_codeblocks_manifest.py b/docs/test_codeblocks_manifest.py index 033a0575..5df7ea42 100644 --- a/docs/test_codeblocks_manifest.py +++ b/docs/test_codeblocks_manifest.py @@ -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( [