From 4684a959205a1f701ede8b59e7822354cb7d0d70 Mon Sep 17 00:00:00 2001 From: Anqi Pang <55934700+AnqiPang@users.noreply.github.com> Date: Mon, 20 Mar 2023 11:06:03 -0700 Subject: [PATCH] build: clean up finch-core _output directory in clean target (#290) Issue #, if available: https://github.com/runfinch/finch/issues/262 *Description of changes:* *Testing done:* - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Anqi Pang --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index fe5b5320b..ca62f45ea 100644 --- a/Makefile +++ b/Makefile @@ -283,6 +283,7 @@ mdlint-ctr: .PHONY: clean clean: -@rm -rf $(OUTDIR) 2>/dev/null || true + -@rm -rf ./deps/finch-core/_output || true -@rm ./*.tar.gz 2>/dev/null || true -@rm ./*.qcow2 2>/dev/null || true -@rm ./test-coverage.* 2>/dev/null || true