(s api.EventStatus)
| 651 | } |
| 652 | |
| 653 | func colorFn(s api.EventStatus) colorFunc { |
| 654 | switch s { |
| 655 | case api.Done: |
| 656 | return SuccessColor |
| 657 | case api.Warning: |
| 658 | return WarningColor |
| 659 | case api.Error: |
| 660 | return ErrorColor |
| 661 | default: |
| 662 | return nocolor |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | func numDone(tasks map[string]*task) int { |
| 667 | i := 0 |