We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0fbae2 commit 3d5a5efCopy full SHA for 3d5a5ef
noxfile.py
@@ -33,10 +33,6 @@ def build(session, autobuild=False):
33
"""
34
session.install("-r", "requirements.txt")
35
36
- target_build_dir = "build"
37
-
38
- shutil.rmtree(target_build_dir, ignore_errors=True)
39
40
if autobuild:
41
command = "sphinx-autobuild"
42
extra_args = "--host", "0.0.0.0"
@@ -56,7 +52,7 @@ def build(session, autobuild=False):
56
52
"-W", # Treat warnings as errors.
57
53
*session.posargs,
58
54
"source", # where the rst files are located
59
- target_build_dir, # where to put the html output
55
+ "build", # where to put the html output
60
)
61
62
0 commit comments