From 19b31859f6ae72a5fa20eacb1c0ff86e33c18807 Mon Sep 17 00:00:00 2001 From: The_miro Date: Mon, 18 May 2026 14:33:01 +0200 Subject: [PATCH] archiso: use HOME instead of /tmp for build and output dirs /tmp in WSL is a RAM-backed tmpfs that fills up during the build, leaving xorriso with no room to write the ISO. Co-Authored-By: Claude Sonnet 4.6 --- setup/archiso/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/archiso/build.sh b/setup/archiso/build.sh index 74718dc..1df7eac 100644 --- a/setup/archiso/build.sh +++ b/setup/archiso/build.sh @@ -3,8 +3,8 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" DOTFILES_DIR="$(cd "$SCRIPT_DIR/../.." && pwd)" -WORK_DIR="${WORK_DIR:-/tmp/m-archy-build}" -OUT_DIR="${1:-${OUT_DIR:-/tmp/m-archy-out}}" +WORK_DIR="${WORK_DIR:-$HOME/m-archy-build}" +OUT_DIR="${1:-${OUT_DIR:-$HOME/m-archy-out}}" PROFILE="$WORK_DIR/profile" RELENG="/usr/share/archiso/configs/releng"