From 606f387da6ee1da149f493229e39f04758b8d4de Mon Sep 17 00:00:00 2001 From: silverwind Date: Wed, 25 Mar 2026 11:51:08 +0100 Subject: [PATCH] Revert build help text to 'build the application' Co-Authored-By: Claude (claude-opus-4-6) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb9ea22..9edb7b0 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ clean: ## delete build artifacts @echo "Cleaned up $(EXECUTABLE)" .PHONY: build -build: ## build everything +build: ## build the application $(GO) build -v -ldflags '-s -w $(LDFLAGS)' -o $(EXECUTABLE) .PHONY: air