From 620d7eb6f11577346c1ca58b7b235980eae7ca18 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Mon, 17 Aug 2026 11:50:57 -0400 Subject: [PATCH] Fix conf_populate.sh sourcing load_config.sh three levels up from Deployment/ It resolved outside the repo on both layouts, so every helper was command-not-found and onboard Step 11 could never have succeeded. --- Deployment/conf_populate.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Deployment/conf_populate.sh b/Deployment/conf_populate.sh index 25ee327..5a2f6f6 100755 --- a/Deployment/conf_populate.sh +++ b/Deployment/conf_populate.sh @@ -158,7 +158,11 @@ # ============================================================================================== SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -source "$SCRIPT_DIR/../../../load_config.sh" +# Deployment/ sits one level under the repo root, not three. The old ../../../ resolved to +# /boot/config on a flash install and /mnt/user on an appdata one — outside the repo either +# way, so this sourced nothing and every helper below was "command not found". Onboard Step 11 +# has been failing on that since it was written. +source "$SCRIPT_DIR/../load_config.sh" SCRIPTS_ROOT="$SCRIPTS_DIR" OVERWRITE=false