Skip to content

Commit

Permalink
fix cross-compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
Biptaste committed Jun 1, 2022
1 parent e099a3d commit 2914167
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 @@ -7,7 +7,7 @@ darwin-arm64:
GOOS=darwin GOARCH=arm64 go build -o build/pliz_darwin_arm64 main.go

linux-amd64:
GOOS=darwin GOARCH=amd64 go build -o build/pliz_linux_amd64 main.go
GOOS=linux GOARCH=amd64 go build -o build/pliz_linux_amd64 main.go

windows-amd64:
GOOS=darwin GOARCH=amd64 go build -o build/pliz_windows_amd64.exe main.go
GOOS=windows GOARCH=amd64 go build -o build/pliz_windows_amd64.exe main.go

0 comments on commit 2914167

Please sign in to comment.