Remove extra spaces in Makefile

This commit is contained in:
Ian Fijolek
2026-01-13 21:13:19 -08:00
parent bcbac39cad
commit a06ed3540c
+2 -2
View File
@@ -69,8 +69,8 @@ docker-run: docker-build
$(TARGETS): $(GOFILES) $(TARGETS): $(GOFILES)
mkdir -p ./dist mkdir -p ./dist
GOOS=$(word 2, $(subst -, ,$(@))) GOARCH=$(word 3, $(subst -, ,$(@))) CGO_ENABLED=0 \ GOOS=$(word 2, $(subst -, ,$(@))) GOARCH=$(word 3, $(subst -, ,$(@))) CGO_ENABLED=0 \
go build -ldflags '-X "main.version=${VERSION}"' -a -installsuffix nocgo \ go build -ldflags '-X "main.version=${VERSION}"' -a -installsuffix nocgo \
-o $@ -o $@
.PHONY: $(TARGET_ALIAS) .PHONY: $(TARGET_ALIAS)
$(TARGET_ALIAS): $(TARGET_ALIAS):