From 35de4235562b83e3c2149c62c4d4b2e743352f94 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Fri, 21 Feb 2025 00:05:03 -0500 Subject: [PATCH] docs: Add missing uv command for docs generation in contributing guide (#1197) # What does this PR do? ``` make html /bin/sh: line 1: sphinx-build: command not found make: *** [Makefile:20: html] Error 127 ``` ## Test Plan Tested the command `uv run ./docs/openapi_generator/run_openapi_generator.sh` successfully. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 83a717273..c5952c8d2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -145,7 +145,7 @@ If you modify or add new API endpoints, update the API documentation accordingly ```bash $ uv sync --extra dev -$ ./docs/openapi_generator/run_openapi_generator.sh +$ uv run ./docs/openapi_generator/run_openapi_generator.sh ``` The generated API documentation will be available in `docs/_static/`. Make sure to review the changes before committing.