From 4f538bb92af474115e5d33554c136788f483332b Mon Sep 17 00:00:00 2001 From: desertwitch <24509509+desertwitch@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:19:01 +0100 Subject: [PATCH 1/2] chore: add docs files to gitignore --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index eab67e6..5f0719c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ /mount.zipfuse -/vendor /zipfuse dist/ +docs/* +!docs/*.adoc +vendor/ From 31c9b3a978b2aece4e7c598cff53c6bd0bcd401e Mon Sep 17 00:00:00 2001 From: desertwitch <24509509+desertwitch@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:29:06 +0100 Subject: [PATCH 2/2] chore: remove dist on clean --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 5fe4066..e15c83e 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ check: ## Runs all static analysis and tests on the application code clean: ## Returns the application build stage to its original state (deleting files) @$(MAKE) docs-clean + @rm -vfr dist || true @rm -vf $(ZIPFUSE) $(HELPER) || true debug: ## Builds the application in debug mode (with symbols, race checks, ...)