Fixed the "run" task of the Makefile file in the project.

This commit is contained in:
Javier Cicchelli 2025-04-10 01:15:07 +02:00
parent e3728e943f
commit 469af173cf

View File

@ -36,8 +36,8 @@ update: ## Updates the SPM package dependencies.
build: ## Builds the project locally. build: ## Builds the project locally.
@swift build -c release @swift build -c release
run: ## Runs the project locally. run: build ## Runs the project locally.
@swift run -c release @swift run doxy --archives-path "$(DOCC_ARCHIVES_FOLDER)"
tests: ## Runs all the test cases of the project. tests: ## Runs all the test cases of the project.
@swift test --enable-swift-testing @swift test --enable-swift-testing