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.
2 parents 43c451f + 3d5a5ef commit 68b8370Copy full SHA for 68b8370
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"
@@ -57,7 +53,7 @@ def build(session, autobuild=False):
57
53
"-W", # Treat warnings as errors.
58
54
*session.posargs,
59
55
"source", # where the rst files are located
60
- target_build_dir, # where to put the html output
56
+ "build", # where to put the html output
61
)
62
63
0 commit comments