This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

37 rader
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