From 92c7ebf23c4db3e1f7f934f4efb7f9a7f9fb0b4d Mon Sep 17 00:00:00 2001 From: Hunter Long Date: Mon, 13 Aug 2018 22:38:05 -0700 Subject: [PATCH] makefile with travis - logs --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9764dc52..32f3d70d 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ GOINSTALL=$(GOCMD) install XGO=GOPATH=$(GOPATH) $(GOPATH)/bin/xgo -go 1.10.x --dest=build BUILDVERSION=-ldflags="-X main.VERSION=$(VERSION)" BINARY_NAME=statup -DOCKER=/usr/local/bin/docker +DOCKER=`which docker` PATH:=/usr/local/bin:$(GOPATH)/bin:$(PATH) all: deps compile install clean @@ -76,6 +76,12 @@ deps: $(GOGET) github.com/karalabe/xgo $(GOGET) github.com/GeertJohan/go.rice $(GOGET) github.com/GeertJohan/go.rice/rice + cd cmd && $(GOGET) + cd notifiers && $(GOGET) + cd handlers && $(GOGET) + cd core && $(GOGET) + cd types && $(GOGET) + cd utils && $(GOGET) clean: rm -rf build