From bb1db91a310db7cc287d37b385127a34431fa109 Mon Sep 17 00:00:00 2001 From: Drew Walters Date: Tue, 4 Sep 2018 17:12:52 -0500 Subject: [PATCH] Remove temp dir deletion statement from make clean Invoking make charts initializes the clean recipe, resulting in the deletion of the temp directory, $(BUILD_DIR), which is created when make is invoked. Since this is the location the helm client is installed by tools/helm_install.sh, the script fails. This commit removes the statement that deletes the temp directory created when make is invoked. Change-Id: I87d41df979a5a4daeb539bcc1330f126a5a407c7 --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index bc004a19..57335940 100644 --- a/Makefile +++ b/Makefile @@ -127,7 +127,6 @@ endif .PHONY: clean clean: - rm -r $(BUILD_DIR) rm -rf build rm -rf docs/build cd $(BUILD_CTX)/shipyard_client; rm -rf build