From 1e269a400d8a4b54c2be875d68526ee77caa6f34 Mon Sep 17 00:00:00 2001 From: rbp Date: Sun, 14 Dec 2025 18:07:40 -0500 Subject: [PATCH] Remove /tmp/archlive before building. Otherwise latest changes are not built. --- build_iso.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build_iso.sh b/build_iso.sh index a1cb6086ba..c9cb754f3e 100755 --- a/build_iso.sh +++ b/build_iso.sh @@ -18,6 +18,9 @@ packages=( python-textual ) +if [ -d "/tmp/archlive" ]; then + rm -rf "/tmp/archlive" +fi mkdir -p /tmp/archlive/airootfs/root/archinstall-git cp -r . /tmp/archlive/airootfs/root/archinstall-git