More re-factor for 1.0 as I port FetchApply to the framework.

This commit is contained in:
2025-06-30 12:48:28 -05:00
parent cdcb624d35
commit d4578dcbf7
10 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
function print_info()
{
GREEN='\033[0;32m'
NC='\033[0m'
tput bold
echo -e "$GREEN $1${NC}"
echo -e "$GREEN $1${NC}" >> "$LOGFILENAME"
tput sgr0
}
function print_error()
{
RED='\033[0;31m'
NC='\033[0m'
tput bold
echo -e "$RED $1${NC}"
echo -e "$RED $1${NC}" >> "$LOGFILENAME"
echo "$1"
tput sgr0
}