From 19337566a927b64d3a739209b467aa83d2513162 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 7 Nov 2025 13:16:48 +0000 Subject: [PATCH] fix: Handle missing tarball in cleanup gracefully --- build.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.zsh b/build.zsh index 8c1894f..3567124 100755 --- a/build.zsh +++ b/build.zsh @@ -11,7 +11,8 @@ echo "" # Clean up previous build artifacts echo "Cleaning up previous build..." -rm -rf root.x86_64/ archiso/ aios-bootstrap*.tar.gz install.sh +rm -rf root.x86_64/ archiso/ install.sh +rm -f aios-bootstrap*.tar.gz 2>/dev/null || true # ============================================ # 1. Arch Linux Base Construction