From 2357657c258d548b4abe8ebc118853dc53b5f952 Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Mon, 23 Apr 2018 14:26:37 -0400 Subject: [PATCH] FAB-9660 add manifest-tool to gotools v1.1 Change-Id: I00490c628aea2405104afccf4964d3b80ed8d588 Signed-off-by: Christopher Ferris --- gotools/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gotools/Makefile b/gotools/Makefile index 95b181e5a8f..cd723602102 100644 --- a/gotools/Makefile +++ b/gotools/Makefile @@ -18,17 +18,18 @@ OBJDIR ?= build TMP_GOPATH=$(OBJDIR)/gopath GOBIN=$(abspath $(TMP_GOPATH)/bin) -GOTOOLS = golint govendor goimports protoc-gen-go ginkgo gocov gocov-xml misspell +GOTOOLS = golint govendor goimports protoc-gen-go ginkgo gocov gocov-xml misspell manifest-tool GOTOOLS_BIN = $(patsubst %,$(GOBIN)/%, $(GOTOOLS)) # go tool->path mapping go.fqp.govendor := github.com/kardianos/govendor -go.fqp.golint := github.com/golang/lint/golint +go.fqp.golint := golang.org/x/lint/golint go.fqp.goimports := golang.org/x/tools/cmd/goimports go.fqp.ginkgo := github.com/onsi/ginkgo/ginkgo go.fqp.gocov := github.com/axw/gocov/... go.fqp.misspell := github.com/client9/misspell/cmd/misspell go.fqp.gocov-xml:= github.com/AlekSi/gocov-xml +go.fqp.manifest-tool := github.com/estesp/manifest-tool all: $(GOTOOLS_BIN) install: $(GOTOOLS_BIN)