From bf871650a83288181d49225171fd44a79d3c62c2 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Thu, 11 Dec 2025 15:29:51 +0100 Subject: [PATCH] Added purge option to makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index abb545c..6ab27a8 100644 --- a/Makefile +++ b/Makefile @@ -68,6 +68,11 @@ build-missing: # Combined test target for local + CI (unit + integration + e2e) test: test-container test-unit test-integration test-e2e +delete-volumes: + @docker volume rm pkgmgr_nix_store_${distro} pkgmgr_nix_cache_${distro} + +purge: delete-volumes build-no-cache + # ------------------------------------------------------------ # System install (native packages, calls scripts/installation/run-package.sh) # ------------------------------------------------------------