Skip to content

Commit

Permalink
Merge pull request #14 from segmentio/disable-cgo
Browse files Browse the repository at this point in the history
disable cgo in distributed versions:
  • Loading branch information
dfuentes committed Aug 14, 2017
2 parents c66919b + 77d4956 commit 58a665a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ clean:

dist:
mkdir dist
GOOS=darwin GOARCH=amd64 go build -o dist/chamber-$(version)-darwin-amd64
GOOS=linux GOARCH=amd64 go build -o dist/chamber-$(version)-linux-amd64
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -o dist/chamber-$(version)-darwin-amd64
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o dist/chamber-$(version)-linux-amd64

gh-release:
go get -u github.com/aktau/github-release
Expand Down

0 comments on commit 58a665a

Please sign in to comment.