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

Commit

Permalink
Merge pull request #5 from sh7ning-mirror/master
Browse files Browse the repository at this point in the history
add build.sh
  • Loading branch information
Ive20 authored Sep 23, 2019
2 parents 406fafd + 0455889 commit b5322b2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
vendor

kumex_market
kumex-market*
.env.local
*.pyc
8 changes: 8 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags '-s -w' -o kumex-market-for-linux kumex_market.go

CGO_ENABLED=0 go build -ldflags '-s -w' -o kumex-market-for-mac kumex_market.go

CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags '-s -w' -o kumex-market-for-windows.exe kumex_market.go

0 comments on commit b5322b2

Please sign in to comment.