Skip to content

Commit

Permalink
Brew build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Olenik committed Oct 25, 2017
1 parent d957857 commit 2695848
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Makefile
Expand Up @@ -3,15 +3,14 @@ default: build

get:
go get -u github.com/golang/dep/cmd/dep
dep ensure
$$GOPATH/bin/dep ensure

build: get
GOOS=darwin GOARCH=amd64 go build -i -ldflags="${LDFLAGS}" -o dist/hclq-macos-amd64
GOOS=linux GOARCH=amd64 go build -i -ldflags="${LDFLAGS}" -o dist/hclq-linux-amd64
GOOS=windows GOARCH=amd64 go build -i -ldflags="${LDFLAGS}" -o dist/hclq-windows-amd64

brew:
dep ensure
brew: get
GOOS=darwin GOARCH=amd64 go build -i -ldflags="${LDFLAGS}" -o dist/hclq

install:
Expand Down

0 comments on commit 2695848

Please sign in to comment.