From 1b40ea52442c6b44743169d39d8cba1eb9240839 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Tue, 9 Sep 2025 18:56:48 +0200 Subject: [PATCH] Amended the documentation tasks in the Makefile to use the DOCC_CATALOG_PATH variable. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index c7ce1c7..46195d0 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,7 @@ doc-generate-github: ## Generates the library documentation for Github @swift package \ --allow-writing-to-directory $(DOCC_GITHUB_OUTPUT) \ generate-documentation \ + $(DOCC_CATALOG_PATH) \ --target $(SPM_LIBRARY_TARGET) \ --disable-indexing \ --transform-for-static-hosting \ @@ -52,6 +53,7 @@ doc-generate-xcode: ## Generates the library documentation for Xcode @swift package \ --allow-writing-to-directory $(DOCC_XCODE_OUTPUT) \ generate-documentation \ + $(DOCC_CATALOG_PATH) \ --target $(SPM_LIBRARY_TARGET) \ --output-path $(DOCC_XCODE_OUTPUT) @@ -60,6 +62,7 @@ doc-preview: ## Previews the library documentation in Safari @swift package \ --disable-sandbox \ preview-documentation \ + $(DOCC_CATALOG_PATH) \ --target $(SPM_LIBRARY_TARGET) # IDE