From b34c171ccb19e59f0720b1c622beab5ba96fde05 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Mon, 3 Nov 2025 03:18:23 -0500 Subject: [PATCH] fix(hack): remove xen images during clean --- hack/clean.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hack/clean.sh b/hack/clean.sh index 10b4ad4..c1ebdce 100755 --- a/hack/clean.sh +++ b/hack/clean.sh @@ -27,4 +27,6 @@ if command -v docker >/dev/null 2>&1; then delete_image sprout-kernel-build-aarch64 || true delete_image sprout-boot-x86_64 || true delete_image sprout-boot-aarch64 || true + delete_image sprout-xen-x86_64 || true + delete_image sprout-xen-aarch64 || true fi