Fix the clean task when directory not present

The Makefile has clean task that was failing when the ./rootfs/tiller
was not present
pull/1052/head
Naveen Srinivasan 9 years ago
parent e4c60380a5
commit 5f015322e2

@ -64,7 +64,7 @@ protoc:
.PHONY: clean
clean:
@rm -rf $(BINDIR)
@rm ./rootfs/tiller
@rm -f ./rootfs/tiller
.PHONY: coverage
coverage:

Loading…
Cancel
Save