From 1c6c1f64d9bcc465373b9c44eb85ff450c3bafa1 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Wed, 10 Sep 2025 20:04:37 +0200 Subject: [PATCH] Removed the unnecessary DOCC_CATALOG_PATH from the .env file and its use from the Makefile file. --- .env | 1 - Makefile | 3 --- 2 files changed, 4 deletions(-) diff --git a/.env b/.env index 65a9167..522850c 100644 --- a/.env +++ b/.env @@ -1,6 +1,5 @@ # --- DOCUMENTATION --- -DOCC_CATALOG_PATH=./Catalogs/AmiiboService.docc DOCC_GITHUB_OUTPUT=./docs DOCC_GITHUB_BASE_PATH=amiibo-service DOCC_PREVIEW_URL=http://localhost:8080/documentation/amiiboservice diff --git a/Makefile b/Makefile index 46195d0..c7ce1c7 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,6 @@ 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 \ @@ -53,7 +52,6 @@ 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) @@ -62,7 +60,6 @@ doc-preview: ## Previews the library documentation in Safari @swift package \ --disable-sandbox \ preview-documentation \ - $(DOCC_CATALOG_PATH) \ --target $(SPM_LIBRARY_TARGET) # IDE