From f15f709266800d7d64cedc4d3311f84264c37a16 Mon Sep 17 00:00:00 2001 From: Tin Lam Date: Sun, 17 Dec 2017 22:54:32 -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: I6575cb9e1e7da8b6c690e433418d1115130e0eff --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 283d77d078..65f3c52f0e 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