Commit 5f015322 authored by Naveen Srinivasan's avatar Naveen Srinivasan

Fix the clean task when directory not present

The Makefile has clean task that was failing when the ./rootfs/tiller
was not present
parent e4c60380
...@@ -64,7 +64,7 @@ protoc: ...@@ -64,7 +64,7 @@ protoc:
.PHONY: clean .PHONY: clean
clean: clean:
@rm -rf $(BINDIR) @rm -rf $(BINDIR)
@rm ./rootfs/tiller @rm -f ./rootfs/tiller
.PHONY: coverage .PHONY: coverage
coverage: coverage:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment