Skip to content

Commit a1062fc

Browse files
Steve Yeggeclaude
andcommitted
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>
1 parent 21c331b commit a1062fc

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

cmd/bd/init.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@ With --no-db: creates .beads/ directory and issues.jsonl file instead of SQLite
353353

354354
green := color.New(color.FgGreen).SprintFunc()
355355
cyan := color.New(color.FgCyan).SprintFunc()
356+
yellow := color.New(color.FgYellow).SprintFunc()
356357

357358
fmt.Printf("\n%s bd initialized successfully!\n\n", green("✓"))
358359
fmt.Printf(" Database: %s\n", cyan(initDBPath))

0 commit comments

Comments
 (0)