Skip to content

Commit

Permalink
Build three versions of bonniego
Browse files Browse the repository at this point in the history
- macOS
- Windows
- Linux

In the near future (gosigar build problems):

- FreeBSD
  • Loading branch information
cunnie committed Feb 14, 2018
1 parent 9f1e0e8 commit 89e8c5d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bin/make_all
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
#
# Build binaries for macOS, Windows, Linux, FreeBSD
#
export GOOS GOARCH
for GOOS in darwin linux windows; do
for GOARCH in amd64; do
go build -o $GOPATH/bin/bonniego-$GOOS-$GOARCH bonniego.go
done
done

0 comments on commit 89e8c5d

Please sign in to comment.