From b533026c74abf014a5883ef2ba70fba1441df269 Mon Sep 17 00:00:00 2001 From: Peter Rifel Date: Wed, 8 Apr 2020 21:50:07 -0500 Subject: [PATCH] dont delete bindata on "make clean" Now that this is checked into version control we shouldn't be deleting it --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3a69747431..8cac7e599e 100644 --- a/Makefile +++ b/Makefile @@ -151,9 +151,9 @@ help: # Show this help } 1>&2; \ .PHONY: clean -clean: # Remove build directory and bindata-generated files - for t in ${BINDATA_TARGETS}; do if test -e $$t; then rm -fv $$t; fi; done +clean: if test -e ${BUILD}; then rm -rfv ${BUILD}; fi + bazel clean rm -rf tests/integration/update_cluster/*/.terraform .PHONY: kops