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
This commit is contained in:
Drew Walters 2018-09-04 17:12:52 -05:00
parent 35e351a9c9
commit bb1db91a31
1 changed files with 0 additions and 1 deletions

View File

@ -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