From da1fd102c6249e226db7158b7f6f8d8c22158cf5 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 18 Apr 2016 14:41:40 -0400 Subject: [PATCH] Fix makefile for people who don't have GOPATH/bin on their path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 633f56d6..a24b2fea 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ install: build runtime runtime: go get -u github.com/jteeuwen/go-bindata/... - go-bindata -o runtime.go runtime/... + $(GOPATH)/bin/go-bindata -o runtime.go runtime/... mv runtime.go cmd/micro test: