Add GOPATH/bin to Makefile for Travis CI

This commit is contained in:
Cody Soyland 2017-02-16 15:47:05 -06:00
parent d9b71bba21
commit be873afe2b

View file

@ -9,7 +9,10 @@ LDFLAGS=-ldflags "-X main.Version=$(VERSION) -X main.BuildTime=$(BUILD_TIME)"
default: test pilosa pilosactl
glide:
$(GOPATH)/bin:
mkdir $(GOPATH)/bin
glide: $(GOPATH)/bin
ifndef GLIDE
curl https://glide.sh/get | sh
endif