From fe3236da61ddfacac0e7a19458a2b78131c3f498 Mon Sep 17 00:00:00 2001 From: Pin Zhang Date: Tue, 6 Mar 2018 22:57:12 +0800 Subject: [PATCH] Fix bug: make will fail if the path contains whitespace --- tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index cf4557f430..ee1c14a843 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -42,7 +42,7 @@ install: get_vendor_deps go build -o bin/go-vendorinstall go-vendorinstall/*.go @echo "$(ansi_yel)Install gometalinter.v2$(ansi_end)" - GOBIN=$(CURDIR)/bin ./bin/go-vendorinstall github.com/alecthomas/gometalinter + GOBIN="$(CURDIR)/bin" ./bin/go-vendorinstall github.com/alecthomas/gometalinter @echo "$(ansi_grn)Done installing tools$(ansi_end)"