From e3e9dcabb29d196be488035bb3202ec1a4abbeba Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Mon, 4 Dec 2017 13:54:09 -0600 Subject: [PATCH] Fix Makefile This patch sets fixes the make clean target as it currently attempts to delete the generated */charts up the parents, where the directory is guaranteed to be non-empty. Change-Id: Id1327998cc1cdc73bdf0113d5ec68330d9fc70f0 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 283d77d07..65f3c52f0 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ clean: rm -f */templates/_globals.tpl rm -f *tgz */charts/*tgz rm -f */requirements.lock - -rmdir -p */charts + -rm -rf */charts pull-all-images: @./tools/pull-images.sh