diff --git a/project.sh b/ProjectCode/project.sh similarity index 85% rename from project.sh rename to ProjectCode/project.sh index 6536ac8..4b8df06 100644 --- a/project.sh +++ b/ProjectCode/project.sh @@ -14,10 +14,10 @@ PROJECT_INCLUDES_FULL_PATH="$(realpath ./Project-ConfigFiles)" #Framework variables are read from hee -source $VARS_FULL_PATH/FrameworkVars +source $FRAMEWORK_CONFIGS_FULL_PATH/FrameworkVars #Boilerplate and support functions -FrameworkIncludeFiles="$(ls -1 --color=none includes/*)" +FrameworkIncludeFiles="$(ls -1 --color=none $FRAMEWORK_INCLUDES_FULL_PATH/*)" IFS=$'\n\t' for file in ${FrameworkIncludeFiles[@]}; do @@ -27,7 +27,7 @@ unset IFS if [[ ProjectIncludes = 1 ]]; then -ProjectIncludeFiles="$(ls -1 --color=none project-includes/*)" +ProjectIncludeFiles="$(ls -1 --color=none $PROJECT_INCLUDES_FULL_PATH/*)" IFS=$'\n\t' for file in ${ProjectIncludeFiles[@]}; do . "$file" @@ -35,7 +35,6 @@ done unset IFS fi - ##### #Core framework functions... ##### @@ -66,11 +65,8 @@ done function main() { -StrictMode -if [ PreflightCheck = 1 ]; then PreflightCheck -fi echo > $LOGFILENAME diff --git a/README_template.md b/ProjectDocs/README_template.md similarity index 100% rename from README_template.md rename to ProjectDocs/README_template.md