From 7e7a68bc92df9162588b020c61048d5e01b9b7c0 Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Mon, 30 Jun 2025 13:21:14 -0500 Subject: [PATCH] hopefully final refactor... --- .gitignore | 1 + ProjectCode/project.sh | 17 +++++------------ 2 files changed, 6 insertions(+), 12 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5292519 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +logs/ \ No newline at end of file diff --git a/ProjectCode/project.sh b/ProjectCode/project.sh index c5eeda2..d756a77 100644 --- a/ProjectCode/project.sh +++ b/ProjectCode/project.sh @@ -1,5 +1,9 @@ #!/bin/bash +##### +#Core framework functions... +##### + export FRAMEWORK_INCLUDES_FULL_PATH FRAMEWORK_INCLUDES_FULL_PATH="$(realpath ../Framework-Includes)" @@ -35,20 +39,9 @@ done unset IFS fi -##### -#Core framework functions... -##### - - -function main() -{ - PreflightCheck echo > $LOGFILENAME #Your custom logic here.... -echo "Custom logic here..." -} - -main +echo "Custom logic here..." \ No newline at end of file