From a06ed3540cf31cc755597c7419325098c40147d3 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Tue, 13 Jan 2026 21:13:19 -0800 Subject: [PATCH] Remove extra spaces in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 29d9856..868d34f 100644 --- a/Makefile +++ b/Makefile @@ -69,8 +69,8 @@ docker-run: docker-build $(TARGETS): $(GOFILES) mkdir -p ./dist GOOS=$(word 2, $(subst -, ,$(@))) GOARCH=$(word 3, $(subst -, ,$(@))) CGO_ENABLED=0 \ - go build -ldflags '-X "main.version=${VERSION}"' -a -installsuffix nocgo \ - -o $@ + go build -ldflags '-X "main.version=${VERSION}"' -a -installsuffix nocgo \ + -o $@ .PHONY: $(TARGET_ALIAS) $(TARGET_ALIAS):