Skip to content

Commit

Permalink
Add build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Akenaide committed May 11, 2019
1 parent 4f8635a commit 8b935a6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/
7 changes: 7 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
mkdir build
for GOOS in darwin linux windows; do
for GOARCH in 386 amd64; do
go build -v -o build/wsoffcli-$GOOS-$GOARCH
done
done

0 comments on commit 8b935a6

Please sign in to comment.