Skip to content

Commit

Permalink
add a build script
Browse files Browse the repository at this point in the history
  • Loading branch information
olix0r committed Oct 4, 2016
1 parent 5ffc3bc commit a4908c3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions gob/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh

set -ex

for svc in gen web word ; do
GOOS=linux GOARCH=amd64 go build -o $svc.linux_amd64 $svc/main.go
GOOS=darwin GOARCH=amd64 go build -o $svc.darwin $svc/main.go
done

0 comments on commit a4908c3

Please sign in to comment.