From 18fe518a333712eb25fa93f1537bd26521d3bd32 Mon Sep 17 00:00:00 2001 From: Tibor Vass Date: Mon, 8 May 2017 09:01:44 -0700 Subject: [PATCH] Makefile: on clean, delete files in the build folder, but not the folder Signed-off-by: Tibor Vass Upstream-commit: 17311d3d1a993a9b1c72d0b395b04d796d5fc936 Component: cli --- components/cli/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cli/Makefile b/components/cli/Makefile index 017cb55006..4bdb0f6a86 100644 --- a/components/cli/Makefile +++ b/components/cli/Makefile @@ -10,7 +10,7 @@ build: clean # remove build artifacts clean: - @rm -rf ./build + @rm -rf ./build/* # run go test # the "-tags daemon" part is temporary