mirror of https://github.com/django/django.git
Added spelling option to make.bat.
This commit is contained in:
parent
1f643c28b5
commit
7582d913e7
|
@ -34,6 +34,7 @@ if "%1" == "help" (
|
||||||
echo. changes to make an overview over all changed/added/deprecated items
|
echo. changes to make an overview over all changed/added/deprecated items
|
||||||
echo. linkcheck to check all external links for integrity
|
echo. linkcheck to check all external links for integrity
|
||||||
echo. doctest to run all doctests embedded in the documentation if enabled
|
echo. doctest to run all doctests embedded in the documentation if enabled
|
||||||
|
echo. spelling to check for typos in documentation
|
||||||
goto end
|
goto end
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -186,4 +187,13 @@ results in %BUILDDIR%/doctest/output.txt.
|
||||||
goto end
|
goto end
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if "%1" == "spelling" (
|
||||||
|
%SPHINXBUILD% -b spelling %ALLSPHINXOPTS% %BUILDDIR%/spelling
|
||||||
|
if errorlevel 1 exit /b 1
|
||||||
|
echo.
|
||||||
|
echo.Check finished. Wrong words can be found in %BUILDDIR%/^
|
||||||
|
spelling/output.txt.
|
||||||
|
goto end
|
||||||
|
)
|
||||||
|
|
||||||
:end
|
:end
|
||||||
|
|
Loading…
Reference in New Issue