From 9be83022e697766c7753da49f198360f21e50026 Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Mon, 30 Jun 2025 13:38:52 -0500 Subject: [PATCH] . --- ProjectCode/SetupNewSystem.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectCode/SetupNewSystem.sh b/ProjectCode/SetupNewSystem.sh index baf3f71..b9fd5d9 100644 --- a/ProjectCode/SetupNewSystem.sh +++ b/ProjectCode/SetupNewSystem.sh @@ -22,7 +22,7 @@ source $FRAMEWORK_CONFIGS_FULL_PATH/FrameworkVars set -x #Boilerplate and support functions -FrameworkIncludeFiles="$(ls -1 --color=none $FRAMEWORK_INCLUDES_FULL_PATH/*)" +FrameworkIncludeFiles="$(ls -1 --color=none ../Framework-Includes/*)" IFS=$'\n\t' for file in ${FrameworkIncludeFiles[@]}; do @@ -30,7 +30,7 @@ for file in ${FrameworkIncludeFiles[@]}; do done unset IFS -ProjectIncludeFiles="$(ls -1 --color=none $PROJECT_INCLUDES_FULL_PATH/*)" +ProjectIncludeFiles="$(ls -1 --color=none ../Project-Includes/*)" IFS=$'\n\t' for file in ${ProjectIncludeFiles[@]}; do source "$file"