From 38573ae392a8b48268646fde58566636e001b003 Mon Sep 17 00:00:00 2001 From: sh0rez Date: Sun, 19 Apr 2020 23:33:28 +0200 Subject: [PATCH] fix(make): static on all OS (#262) 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