Skip to content

Commit

Permalink
Added bash script to compile x86_64 versions for Windows, Mac and Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
vovimayhem committed Aug 18, 2016
1 parent 11ba711 commit 88ea600
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#! /bin/bash
set -ex

env GOOS=darwin GOARCH=amd64 go build -o ./builds/plis-darwin_x86_64 plis.go
env GOOS=windows GOARCH=amd64 go build -o ./builds/plis-windows_x86_64 plis.go
env GOOS=linux GOARCH=amd64 go build -o ./builds/plis-linux_x86_64 plis.go

0 comments on commit 88ea600

Please sign in to comment.