From f901aba16106293a7f4065dfc90a13d484184a16 Mon Sep 17 00:00:00 2001 From: rjuer <21335146+rjuer@users.noreply.github.com> Date: Sat, 14 Sep 2024 06:00:31 +0200 Subject: [PATCH] Fix Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 842d985..46e4372 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ vet: ## Vet to find also sublte issues in the code ##@ Build build: ## Build application - go build -ldflags="-s -w X 'github.com/rjuer/cidr/cmd.version=$(VERSION)'" -o dist/ + go build -ldflags="-s -w -X 'github.com/rjuer/cidr/cmd.version=$(VERSION)'" -o dist/ @# go build -ldflags "-s -w" -o dist/ ##@ Test