mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
fix: create parent dirs for docs system lib
This commit is contained in:
parent
80499954fc
commit
8caae75c81
@ -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(
|
||||
[
|
||||
|
||||
Loading…
Reference in New Issue
Block a user