From 89cd8a1c47415158b6fbf470d4762fbc97a04bf1 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Thu, 19 Feb 2026 20:23:52 -0500 Subject: [PATCH] fix: copy config files to live-build config directory in run.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build commands in run.sh were copying to ./ instead of ./config/. After lb config runs, the config directory is created at ./config/, so config files must be copied there. fix: copy config files to correct live-build config directory 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 79e55b1..fa402cf 100755 --- a/run.sh +++ b/run.sh @@ -602,7 +602,7 @@ lb config \ --apt-source-archives false && if [ -d /workspace/config ]; then echo "Applying custom configuration..." - cp -r /workspace/config/* ./ + cp -r /workspace/config/* ./config/ fi && echo "Starting ISO build..." && timeout 3600 lb build &&