From 0353ccb9b294c1b13aed883eff104b33e2d30908 Mon Sep 17 00:00:00 2001 From: Sam & Claude Date: Tue, 24 Mar 2026 01:50:50 +0000 Subject: [PATCH] installerconfig: Glob chmod +x for all clawdie-shell-*.sh modules - Remove individual chmod for legacy gpu-detect.sh (no longer called) - Replace with loop glob over clawdie-shell-*.sh pattern - Ensures all present and future shell modules are executable Co-Authored-By: Claude Haiku 4.5 --- installerconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/installerconfig b/installerconfig index c6c5787c..390bb6a3 100644 --- a/installerconfig +++ b/installerconfig @@ -29,8 +29,11 @@ cp -r "${USB_SHARE}/packages" "${HDD_SHARE}/" cp "${USB_SHARE}/clawdie-ai.tar.gz" "${HDD_SHARE}/" cp "${USB_SHARE}/build.cfg" "${HDD_SHARE}/" +# Make all firstboot shell modules executable chmod +x "${HDD_SHARE}/firstboot/firstboot.sh" -chmod +x "${HDD_SHARE}/firstboot/gpu-detect.sh" +for sh in "${HDD_SHARE}/firstboot/clawdie-shell-"*.sh; do + chmod +x "$sh" +done # Install firstboot rc.d service mkdir -p "$HDD_RCD"