From 17311d3d1a993a9b1c72d0b395b04d796d5fc936 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 017cb55006..4bdb0f6a86 100644 --- a/Makefile +++ b/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