fix: Ajout fonction echo_success manquante

- Ajout fonction echo_success() avec symbole ✓ en vert
- Utilisée dans le système de versioning automatique
- Correction erreur : "echo_success : commande introuvable"

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-26 12:22:36 +01:00
parent cf1e54d8d0
commit 097335193e

View File

@@ -63,6 +63,10 @@ echo_info() {
echo -e "${BLUE}Info:${NC} $1" echo -e "${BLUE}Info:${NC} $1"
} }
echo_success() {
echo -e "${GREEN}${NC} $1"
}
echo_warning() { echo_warning() {
echo -e "${YELLOW}Warning:${NC} $1" echo -e "${YELLOW}Warning:${NC} $1"
} }