You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
408 B
Bash
15 lines
408 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Exit script if you try to use an uninitialized variable.
|
|
set -o nounset
|
|
|
|
action=$1
|
|
|
|
if [ "$action" == "linkcheck" ]; then
|
|
sphinx-build -WETan -j auto -D language=en -b linkcheck -d docs/build/doctrees docs/source docs/build/linkcheck
|
|
elif [ "$action" == "docs" ]; then
|
|
sphinx-build -WETa -j auto -D language=en -b html -d docs/build/doctrees docs/source docs/build/html
|
|
fi
|