check if config has any colors
This commit is contained in:
parent
f2d98027e5
commit
e5ff0c7e98
10
util.go
10
util.go
|
@ -63,12 +63,18 @@ func summerizeTasks(config *Config, tasks []*Task) {
|
||||||
fmt.Printf(" ")
|
fmt.Printf(" ")
|
||||||
}
|
}
|
||||||
// user specified color mapping exists
|
// user specified color mapping exists
|
||||||
if color := config.Colors.Get(tag); color != nil {
|
if config.Colors != nil {
|
||||||
color.Printf("%s", tag)
|
if color := config.Colors.Get(tag); color != nil {
|
||||||
|
color.Printf("%s", tag)
|
||||||
|
} else {
|
||||||
|
// no color mapping for tag
|
||||||
|
fmt.Printf("%s", tag)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// no color mapping
|
// no color mapping
|
||||||
fmt.Printf("%s", tag)
|
fmt.Printf("%s", tag)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
fmt.Printf("]")
|
fmt.Printf("]")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue