Fix: add missing yellow color function in init.go
The yellow color function was referenced but not defined, causing CI build failures. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -353,6 +353,7 @@ With --no-db: creates .beads/ directory and issues.jsonl file instead of SQLite
|
|||||||
|
|
||||||
green := color.New(color.FgGreen).SprintFunc()
|
green := color.New(color.FgGreen).SprintFunc()
|
||||||
cyan := color.New(color.FgCyan).SprintFunc()
|
cyan := color.New(color.FgCyan).SprintFunc()
|
||||||
|
yellow := color.New(color.FgYellow).SprintFunc()
|
||||||
|
|
||||||
fmt.Printf("\n%s bd initialized successfully!\n\n", green("✓"))
|
fmt.Printf("\n%s bd initialized successfully!\n\n", green("✓"))
|
||||||
fmt.Printf(" Database: %s\n", cyan(initDBPath))
|
fmt.Printf(" Database: %s\n", cyan(initDBPath))
|
||||||
|
|||||||
Reference in New Issue
Block a user