From 70bc6d07d09455d73e0b1f44d3094ac94638f6e1 Mon Sep 17 00:00:00 2001 From: Thales Maciel Date: Wed, 1 Apr 2026 19:42:30 -0300 Subject: [PATCH] Fix void-kernel output directory setup Replace the stale `RUNTIME_DIR` mkdir in the experimental Void kernel helper with creation of the parent directory for `OUT_DIR`, which is the current BANGER_MANUAL_DIR/custom --out-dir flow used by the Make target. This restores `make void-kernel` without requiring an extra environment override. Validation: make void-kernel ARGS='--out-dir /tmp/banger-void-kernel-verify-$$'. --- scripts/make-void-kernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-void-kernel.sh b/scripts/make-void-kernel.sh index 372b456..d47d18f 100755 --- a/scripts/make-void-kernel.sh +++ b/scripts/make-void-kernel.sh @@ -280,7 +280,7 @@ if [[ "$ARCH" != "x86_64" ]]; then log "this experimental downloader currently supports only x86_64" exit 1 fi -mkdir -p "$RUNTIME_DIR" +mkdir -p "$(dirname "$OUT_DIR")" if [[ -e "$OUT_DIR" ]]; then log "output directory already exists: $OUT_DIR" log "remove it first if you want to re-stage a different Void kernel"