10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Clean previous build
|
|
rm -rf _build
|
|
|
|
# Build docs matching ReadTheDocs configuration
|
|
sphinx-build -b html -d _build/doctrees . _build/html -W --keep-going
|
|
|
|
# Open docs (MacOS)
|
|
open _build/html/index.html |