Skip to content

Commit 1e4305d

Browse files
committed
Update release command
1 parent 81c6499 commit 1e4305d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ all: build test acceptance
2525
release:
2626
@test $(version)
2727
@docker build --build-arg SINKER_VERSION=$(version) -t plexsystems/sinker:$(version) .
28-
@GOOS=darwin GOARCH=amd64 go build $(GO_TAGS) -o sinker-darwin-amd64 -ldflags="-X 'github.com/plexsystems/sinker/internal/commands.sinkerVersion=$(version)'"
29-
@GOOS=windows GOARCH=amd64 go build $(GO_TAGS) -o sinker-windows-amd64 -ldflags="-X 'github.com/plexsystems/sinker/internal/commands.sinkerVersion=$(version)'"
30-
@GOOS=linux GOARCH=amd64 go build $(GO_TAGS) -o sinker-linux-amd64 -ldflags="-X 'github.com/plexsystems/sinker/internal/commands.sinkerVersion=$(version)'"
28+
@GOOS=darwin GOARCH=amd64 go build -tags='$(GO_TAGS)' -o sinker-darwin-amd64 -ldflags="-X 'github.com/plexsystems/sinker/internal/commands.sinkerVersion=$(version)'"
29+
@GOOS=windows GOARCH=amd64 go build -tags='$(GO_TAGS)' -o sinker-windows-amd64 -ldflags="-X 'github.com/plexsystems/sinker/internal/commands.sinkerVersion=$(version)'"
30+
@GOOS=linux GOARCH=amd64 go build -tags='$(GO_TAGS)' -o sinker-linux-amd64 -ldflags="-X 'github.com/plexsystems/sinker/internal/commands.sinkerVersion=$(version)'"

0 commit comments

Comments
 (0)