The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

35 lines
765 B

4 weeks ago
  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. if "%1" == "" goto help
  10. %SPHINXBUILD% >NUL 2>NUL
  11. if errorlevel 9009 (
  12. echo.
  13. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
  14. echo.installed, then set the SPHINXBUILD environment variable to point
  15. echo.to the full path of the 'sphinx-build' executable. Alternatively you
  16. echo.may add the Sphinx directory to PATH.
  17. echo.
  18. echo.If you don't have Sphinx installed, grab it from
  19. echo.https://www.sphinx-doc.org/
  20. exit /b 1
  21. )
  22. %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
  23. goto end
  24. :help
  25. %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
  26. :end
  27. popd