Skip to content

Commit

Permalink
Fixed phony tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Dec 26, 2022
1 parent 4b72b38 commit 98798a4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Expand Up @@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),)
REPO_OWNER="mrz1836"
endif

.PHONY: clean

.PHONY: all
all: ## Runs multiple commands
@$(MAKE) test

.PHONY: clean
clean: ## Remove previous builds and any test cache data
@go clean -cache -testcache -i -r
@test $(DISTRIBUTIONS_DIR)
@if [ -d $(DISTRIBUTIONS_DIR) ]; then rm -r $(DISTRIBUTIONS_DIR); fi

.PHONY: release
release:: ## Runs common.release then runs godocs
@$(MAKE) godocs

0 comments on commit 98798a4

Please sign in to comment.