build
This commit is contained in:
parent
03dae8ddbc
commit
24fc239f2a
1 changed files with 2 additions and 2 deletions
4
build.py
4
build.py
|
@ -3,7 +3,7 @@
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
import sphinx
|
import sphinx.cmd.build
|
||||||
|
|
||||||
INPUT = ["docs"]
|
INPUT = ["docs"]
|
||||||
OUTPUT = "out"
|
OUTPUT = "out"
|
||||||
|
@ -27,7 +27,7 @@ def main():
|
||||||
os.path.join(directory, doc),
|
os.path.join(directory, doc),
|
||||||
os.path.join(output_directory, doc),
|
os.path.join(output_directory, doc),
|
||||||
]
|
]
|
||||||
sphinx.build_main(arguments)
|
sphinx.cmd.build.build_main(arguments)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
Loading…
Reference in a new issue