Fix bug: make will fail if the path contains whitespace

This commit is contained in:
Pin Zhang 2018-03-06 22:57:12 +08:00
parent 2a5b190d76
commit fe3236da61
1 changed files with 1 additions and 1 deletions

View File

@ -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)"