Review and script fixes
This commit is contained in:
parent
14c01b095b
commit
30bfb9ac88
37 changed files with 5792 additions and 2706 deletions
scripts
10
scripts/gen_docs.py
Normal file
10
scripts/gen_docs.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
import gen_cli_docs
|
||||
import gen_api_docs
|
||||
import os.path as op
|
||||
import subprocess
|
||||
|
||||
gen_cli_docs.main()
|
||||
gen_api_docs.main()
|
||||
cwd = op.dirname(op.realpath(__file__))
|
||||
cwd = op.realpath(op.join(cwd, ".."))
|
||||
proc = subprocess.Popen("mkdocs build", cwd=cwd, shell=True)
|
Loading…
Add table
Add a link
Reference in a new issue