From 06190063e7295f844b7a3a1fba293cac91c00a9e Mon Sep 17 00:00:00 2001 From: Leonid Ganeline Date: Fri, 22 Mar 2024 15:45:55 -0700 Subject: [PATCH] infra: makefile `api_docs_clean` fix (#19405) Fixed a Makefile command that cleans up the api_docs --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 20271ade0b0..4a2e008ac42 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ api_docs_build: cd docs/api_reference && poetry run make html api_docs_clean: - rm -f docs/api_reference/api_reference.rst + find ./docs/api_reference -name '*_api_reference.rst' -delete cd docs/api_reference && poetry run make clean api_docs_linkcheck: