From 70582cff1f2d3bf0e3e0544b974da7b256c6f5d4 Mon Sep 17 00:00:00 2001 From: sh0rez Date: Sun, 19 Apr 2020 23:11:23 +0200 Subject: [PATCH] fix(make): static on all OS Included a GOOS=linux, which makes no sense --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 918a1c2a5..d7f545bdc 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ dev: LDFLAGS := '-s -w -extldflags "-static" -X main.Version=${VERSION}' static: - CGO_ENABLED=0 GOOS=linux go build -ldflags=${LDFLAGS} ./cmd/tk + CGO_ENABLED=0 go build -ldflags=${LDFLAGS} ./cmd/tk install: CGO_ENABLED=0 go install -ldflags=${LDFLAGS} ./cmd/tk