From b72688cf2c12cb417f4e4316c22b33b5e133bb65 Mon Sep 17 00:00:00 2001 From: Michael Chus Date: Thu, 5 Mar 2026 23:03:35 +0300 Subject: [PATCH] fix: chmod +x overlay scripts on builder VM after git pull macOS does not reliably apply git file mode changes on disk. Run chmod explicitly on the VM where it matters. Co-Authored-By: Claude Sonnet 4.6 --- scripts/run-builder.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/run-builder.sh b/scripts/run-builder.sh index 5cef707..548cf29 100755 --- a/scripts/run-builder.sh +++ b/scripts/run-builder.sh @@ -66,6 +66,7 @@ fi cd "\$REPO" echo "--- pulling latest ---" git pull --ff-only +chmod +x iso/overlay-debug/etc/init.d/* iso/overlay-debug/usr/local/bin/* # Kill any previous build session screen -S bee-build -X quit 2>/dev/null || true