Skip to content

Commit

Permalink
Merge pull request #32 from brownz11/patch-1
Browse files Browse the repository at this point in the history
Fix GOOS for Windows Builds
  • Loading branch information
anderseknert authored Aug 9, 2024
2 parents 1324395 + 006c5bf commit e9609eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ build-linux-amd64: prepare-release
GOOS=linux GOARCH=amd64 go build -ldflags=$(LDFLAGS) -o _release/kube-review-linux-amd64

build-windows-amd64: prepare-release
GOOS=linux GOARCH=amd64 go build -ldflags=$(LDFLAGS) -o _release/kube-review-windows-amd64.exe
GOOS=windows GOARCH=amd64 go build -ldflags=$(LDFLAGS) -o _release/kube-review-windows-amd64.exe

build-all: build-darwin-amd64 build-darwin-arm64 build-linux-amd64 build-windows-amd64

0 comments on commit e9609eb

Please sign in to comment.