Skip to content

Commit

Permalink
Merge pull request #103 from topolvm/fix-e2e-make-clean
Browse files Browse the repository at this point in the history
fix clean target of e2e/Makefile
  • Loading branch information
satoru-takeuchi authored Mar 9, 2022
2 parents b3b764d + 90c985f commit 5546067
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ kube-prometheus:

.PHONY: clean
clean: stop-lvmd
for f in $$($(SUDO) find $(TMPDIR) -type f); do \
if $(SUDO) mountpoint -q $$f; then \
$(SUDO) umount $$f; \
fi; \
done
$(SUDO) rm -rf $(TMPDIR)/controller $(TMPDIR)/worker
rm -rf \
$(TMPDIR) \
autoresizer.img \
Expand Down

0 comments on commit 5546067

Please sign in to comment.