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 <noreply@anthropic.com>main
parent
d05eb3ad89
commit
19b31859f6
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue