tested in live code, merged to framework

This commit is contained in:
2025-06-30 12:33:04 -05:00
parent 38752de0bb
commit cdcb624d35
2 changed files with 4 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ function print_info()
NC='\033[0m'
tput bold
echo -e "$GREEN $1${NC}"
echo -e "$GREEN $1${NC}" >> "$LOGFILENAME"
tput sgr0
}
@@ -13,6 +14,7 @@ function print_error()
NC='\033[0m'
tput bold
echo -e "$RED $1${NC}"
echo -e "$RED $1${NC}" >> "$LOGFILENAME"
echo "$1"
tput sgr0
}

View File

@@ -59,6 +59,8 @@ if [ PreflightCheck = 1 ]; then
PreflightCheck
fi
echo > $LOGFILENAME
#Your custom logic here....
echo "Custom logic here..."
}