From 20718ead79697f2bd81bb07c4dcdba837035a9fe Mon Sep 17 00:00:00 2001 From: scrypt-kitty Date: Sun, 14 Dec 2025 16:23:01 -0800 Subject: [PATCH] Remove /tmp/archlive before building. Otherwise latest changes are not built. (#3993) --- build_iso.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build_iso.sh b/build_iso.sh index a1cb6086..c9cb754f 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