Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
Add create release binary shell
Browse files Browse the repository at this point in the history
  • Loading branch information
skanehira committed Oct 10, 2018
1 parent 7a5d4a5 commit c683caa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build_binary.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

# build MacOS
GOOS=darwin GOARCH=amd64 go build
zip MacOS.zip ./docui && rm -rf ./docui

# build Linux
GOOS=linux GOARCH=amd64 go build
zip Linux.zip ./docui && rm -rf ./docui

0 comments on commit c683caa

Please sign in to comment.