From 6c70a67cefe9efe1f46e70ef41c97f3221f1bbda Mon Sep 17 00:00:00 2001 From: Sreejith Punnapuzha Date: Tue, 5 Feb 2019 14:23:50 -0600 Subject: [PATCH] Fix makefile to ignore Dockerfiles and docs directories * Add Dockerfiles and docs directories to exclude from make all Signed-off-by: Sreejith Punnapuzha Change-Id: I1571ac164b3b1819ad56611e612bc9cab87c3d1e --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 03ead868..3f29d0bc 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ SHELL := /bin/bash HELM := helm TASK := build -EXCLUDES := helm-toolkit doc tests tools logs tmp roles playbooks releasenotes +EXCLUDES := helm-toolkit docs Dockerfiles CHARTS := helm-toolkit $(filter-out $(EXCLUDES), $(patsubst %/.,%,$(wildcard */.))) .PHONY: $(EXCLUDES) $(CHARTS)