Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

don't include .doctrees in output #28

Merged
merged 1 commit into from
Sep 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ BUILD_DIR=$(dirname $0)/build
VENV_DIR=$BUILD_DIR/venv
OUT_DIR=$BUILD_DIR/out
SRC_DIR=$(dirname $0)/src
DOCTREE_DIR=$BUILD_DIR/doctrees

function usage() {
echo "Usage: $0 [-r development|official] [-v version]" 1>&2
Expand Down Expand Up @@ -65,7 +66,7 @@ pip3 install -r $(dirname $0)/requirements.txt
#
rm -rf $OUT_DIR
sphinx-build -W --keep-going $SRC_DIR $OUT_DIR -D release_type=$release_type \
-D version=$version
-D version=$version -d $DOCTREE_DIR

#
# Sphinx's use of _static and friends is problematic for github pages, which is
Expand Down