- Fix PROJECT_CONGIGS_FULL_PATH typo and incorrect assignment in project.sh - Add missing $ in ProjectIncludes variable reference - Remove redundant echo in print_error function - Make debug flags conditional on script_debug variable in DebugMe.sh - Add Claude-Todo.md documenting completed code review tasks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
311 B
Bash
19 lines
311 B
Bash
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"
|
|
tput sgr0
|
|
} |