From d29c97f6252be8d2c536dccc84d98114752b1bb5 Mon Sep 17 00:00:00 2001 From: John Wiggins Date: Sat, 5 Sep 2015 21:59:49 +0200 Subject: [PATCH] Fix the SPHINXBUILD define for Travis --- tools/travis_script.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/travis_script.sh b/tools/travis_script.sh index 9810f855..b5d3141a 100755 --- a/tools/travis_script.sh +++ b/tools/travis_script.sh @@ -9,7 +9,8 @@ section_end "Test.with.min.requirements" section "Build.docs" if [[ ($PY != 2.6) && ($PY != 3.2) ]]; then - SPHINXBUILD="python $(which sphinx-build) -d $HOME/.cache/sphinx" make html + export SPHINXBUILD="python $(which sphinx-build) -d $HOME/.cache/sphinx" + make html fi section_end "Build.docs"