From 0c16d9fb7619600c82cc7a219eeae418f23bc997 Mon Sep 17 00:00:00 2001 From: Michael Chus Date: Thu, 5 Mar 2026 11:31:20 +0300 Subject: [PATCH] fix: cd /tmp before mkimage.sh to avoid git repo context conflict --- iso/builder/build-debug.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iso/builder/build-debug.sh b/iso/builder/build-debug.sh index e0a863b..58ccc8f 100644 --- a/iso/builder/build-debug.sh +++ b/iso/builder/build-debug.sh @@ -89,6 +89,8 @@ mkdir -p "${DIST_DIR}" echo "" echo "=== building ISO ===" +# mkimage.sh uses git internally; run it from /tmp to avoid conflicts with bee repo +cd /tmp sh /usr/share/aports/scripts/mkimage.sh \ --tag "v${ALPINE_VERSION}" \ --outdir "${DIST_DIR}" \