From 5f015322e26f323b17b7b4815bfec37aaeda25eb Mon Sep 17 00:00:00 2001 From: Naveen Srinivasan Date: Thu, 11 Aug 2016 22:15:44 -0400 Subject: [PATCH] Fix the clean task when directory not present The Makefile has clean task that was failing when the ./rootfs/tiller was not present --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2dbaed323..74bf76541 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ protoc: .PHONY: clean clean: @rm -rf $(BINDIR) - @rm ./rootfs/tiller + @rm -f ./rootfs/tiller .PHONY: coverage coverage: