From 4e6266babfe711f603e02c3996c34370d45f77e5 Mon Sep 17 00:00:00 2001 From: Sergey Dudoladov Date: Wed, 2 Oct 2019 14:18:29 +0200 Subject: [PATCH] ignore cdp-specific build dir --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c5f1ed667..96a788549 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ GITSTATUS = $(shell git status --porcelain || echo "no changes") SOURCES = cmd/main.go VERSION ?= $(shell git describe --tags --always --dirty) DIRS := cmd pkg -PKG := `go list ./... | grep --invert-match /vendor/ | grep --invert-match /kubectl-pg` +PKG := `go list ./... | grep --invert-match -e /vendor/ -e /kubectl-pg -e workspace` ifeq ($(DEBUG),1) DOCKERFILE = DebugDockerfile