From b842adcffd0f8d1d892162dc1b7c5cb823379f18 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Wed, 27 Feb 2019 10:37:10 +0100 Subject: [PATCH] Update Makefile make sure we use "go list ./..." * without removing vendor dir as it is now removed by default. * stop using ls -d */ --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 770cac7a4..feaa63913 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -TEST?=$(shell go list ./... | grep -v vendor) -VET?=$(shell ls -d */ | grep -v vendor | grep -v website) +TEST?=$(shell go list ./...) +VET?=$(shell go list ./...) # Get the current full sha from git GITSHA:=$(shell git rev-parse HEAD) # Get the current local branch name from git (if we can, this may be blank)