From 416db814e85f6547ad8c7b0cc067022a1a804479 Mon Sep 17 00:00:00 2001 From: Krasi Georgiev Date: Thu, 19 Apr 2018 13:38:01 +0300 Subject: [PATCH] use package shorthand selection that excludes vendored. (#4100) Signed-off-by: Krasi Georgiev --- Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 46a6ce993..7f7ef5f95 100644 --- a/Makefile.common +++ b/Makefile.common @@ -31,7 +31,7 @@ FIRST_GOPATH := $(firstword $(subst :, ,$(shell $(GO) env GOPATH))) PROMU := $(FIRST_GOPATH)/bin/promu STATICCHECK := $(FIRST_GOPATH)/bin/staticcheck GOVENDOR := $(FIRST_GOPATH)/bin/govendor -pkgs = $(shell $(GO) list ./... | grep -v /vendor/) +pkgs = ./... PREFIX ?= $(shell pwd) BIN_DIR ?= $(shell pwd)