From 469af173cf02b9144e23c94229af95ec2af8f10c Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 10 Apr 2025 01:15:07 +0200 Subject: [PATCH] Fixed the "run" task of the Makefile file in the project. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index daa74f7..00b5d6e 100644 --- a/Makefile +++ b/Makefile @@ -36,8 +36,8 @@ update: ## Updates the SPM package dependencies. build: ## Builds the project locally. @swift build -c release -run: ## Runs the project locally. - @swift run -c release +run: build ## Runs the project locally. + @swift run doxy --archives-path "$(DOCC_ARCHIVES_FOLDER)" tests: ## Runs all the test cases of the project. @swift test --enable-swift-testing