Skip to content

Commit

Permalink
Fix builds having wrong architecture description.
Browse files Browse the repository at this point in the history
  • Loading branch information
juamms committed Feb 1, 2019
1 parent 1dd3146 commit eed9655
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rm -rf "./bin"
mkdir "./bin"

env GOOS=linux GOARCH=amd64 go build -o ./bin/packtpub-linux-arm64 main.go
env GOOS=darwin GOARCH=amd64 go build -o ./bin/packtpub-macos-arm64 main.go
env GOOS=windows GOARCH=amd64 go build -o ./bin/packtpub-windows-arm64.exe main.go
env GOOS=linux GOARCH=amd64 go build -o ./bin/packtpub-linux-amd64 main.go
env GOOS=darwin GOARCH=amd64 go build -o ./bin/packtpub-macos-amd64 main.go
env GOOS=windows GOARCH=amd64 go build -o ./bin/packtpub-windows-amd64.exe main.go

0 comments on commit eed9655

Please sign in to comment.