13 lines
334 B
Bash
13 lines
334 B
Bash
#!/bin/sh
|
|
|
|
# usage:
|
|
# ./build.sh
|
|
# SPHINX=/path/to/sphinx-build ./build.sh
|
|
# JOBS=3 ./build.sh ...
|
|
# all command-line arguments are passed directly to sphinx-build - run
|
|
# ``sphinx-build --help`` for a list, or see
|
|
# https://www.sphinx-doc.org/en/master/man/sphinx-build.html
|
|
|
|
cd $(dirname "$0")
|
|
python3 build.py html text "$@"
|