From 752242a8f65ecb356b3953033dff5021a469a40f Mon Sep 17 00:00:00 2001 From: Jean-Louis Fuchs Date: Fri, 23 Feb 2024 18:26:46 +0100 Subject: [PATCH] chore: remove circular build target in Makefile (build -> build) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9879c5e..529c0d5 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ help: @grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort -k 1,1 | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' .PHONY: build -build: build ## Build the container in case you made changes +build: ## Build the container in case you made changes @docker compose build .PHONY: up