Skip to content

Commit

Permalink
Added missing file extension to Windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
virtualzone committed Jan 10, 2023
1 parent 1d5a977 commit 983551a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ macos_arm64:
env GOOS=darwin GOARCH=arm64 go build -ldflags="-w -s" -o build/go-hole_macos_arm64_${VERSION}

windows_amd64:
env GOOS=windows GOARCH=amd64 go build -ldflags="-w -s" -o build/go-hole_windows_amd64_${VERSION}
env GOOS=windows GOARCH=amd64 go build -ldflags="-w -s" -o build/go-hole_windows_amd64_${VERSION}.exe

windows_arm64:
env GOOS=windows GOARCH=arm64 go build -ldflags="-w -s" -o build/go-hole_windows_arm64_${VERSION}
env GOOS=windows GOARCH=arm64 go build -ldflags="-w -s" -o build/go-hole_windows_arm64_${VERSION}.exe

0 comments on commit 983551a

Please sign in to comment.