This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

37 linhas
808 B

  1. @ECHO OFF
  2. pushd %~dp0
  3. REM Command file for Sphinx documentation
  4. if "%SPHINXBUILD%" == "" (
  5. set SPHINXBUILD=sphinx-build
  6. )
  7. set SOURCEDIR=.
  8. set BUILDDIR=_build
  9. set SPHINXPROJ=Lark
  10. if "%1" == "" goto help
  11. %SPHINXBUILD% >NUL 2>NUL
  12. if errorlevel 9009 (
  13. echo.
  14. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
  15. echo.installed, then set the SPHINXBUILD environment variable to point
  16. echo.to the full path of the 'sphinx-build' executable. Alternatively you
  17. echo.may add the Sphinx directory to PATH.
  18. echo.
  19. echo.If you don't have Sphinx installed, grab it from
  20. echo.http://sphinx-doc.org/
  21. exit /b 1
  22. )
  23. %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
  24. goto end
  25. :help
  26. %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
  27. :end
  28. popd