diff options
| author | shimizukawa <shimizukawa@gmail.com> | 2012-11-07 19:22:01 +0900 |
|---|---|---|
| committer | shimizukawa <shimizukawa@gmail.com> | 2012-11-07 19:22:01 +0900 |
| commit | 13994aaa112d0dcbecb19a405df7ebb8fb4db599 (patch) | |
| tree | f6c81d0435763cd425a97f15927f6b3993918886 | |
| parent | 5a1d21680ca6dfde009d168c51dcca88ea44c941 (diff) | |
| download | sphinx-13994aaa112d0dcbecb19a405df7ebb8fb4db599.tar.gz | |
#1024 make.bat improve error message if Sphinx is not found
| -rw-r--r-- | sphinx/quickstart.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index f061b203..b4f63438 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -584,15 +584,15 @@ if "%%1" == "clean" ( %%SPHINXBUILD%% 2> nul if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure Sphinx is - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively - echo.you may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ - exit /b 1 +\techo. +\techo.The 'sphinx-build' command was not found. Make sure you have Sphinx +\techo.installed, then set the SPHINXBUILD environment variable to point +\techo.to the full path of the 'sphinx-build' executable. Alternatively you +\techo.may add the Sphinx directory to PATH. +\techo. +\techo.If you don't have Sphinx installed, grab it from +\techo.http://sphinx-doc.org/ +\texit /b 1 ) if "%%1" == "html" ( |
