From a995d86b37fa7ae77fc70228f192c4c82cf9557a Mon Sep 17 00:00:00 2001 From: Dimitrios Markou Date: Fri, 2 Nov 2018 13:38:14 -0500 Subject: [PATCH] [Bug fix] Remove "clean" from "chart" target In Makefile there is a "clean" target as prerequisite to "chart" target. That causes problems because it removes the "build" directory that was created at the begining of the file and the helm_install.sh script cannot write to the "build" directory in subsequent step [0]. [0]: https://github.com/openstack/airship-drydock/blob/master/tools/helm_install.sh#L30 Change-Id: Ic608630c38ff3ad7caf3a4d42e0b318d0d9d4d7e Signed-off-by: Dimitrios Markou --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3aa94532..4d259965 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ drydock: charts # Create tgz of the chart .PHONY: charts -charts: clean helm-init +charts: helm-init $(HELM) dep up charts/drydock $(HELM) package charts/drydock