This commit is contained in:
Marc Beninca 2024-09-13 17:41:49 +02:00
parent cfa9ca9e3c
commit 5e3c8e93ff
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,7 +1,5 @@
"""Project consisting only of a Sphinx documentation."""
from os import path
from sphinx.cmd.build import build_main
from rwx.fs import wipe
@ -17,7 +15,7 @@ class SphinxProject(Project):
def build(self) -> None:
"""Build the project."""
output_root: str = path.join(self.root, "out")
output_root: str = self.root / "out"
wipe(output_root)
arguments: list[str] = [
"-E",
@ -34,7 +32,7 @@ class SphinxProject(Project):
"-c",
self.root,
# "-C",
path.join(self.root, self.name),
path.join(output_root, "web"),
self.root / self.name,
output_root / "web",
]
build_main(arguments)