We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7edf9b6 commit 53d0244Copy full SHA for 53d0244
main.go
@@ -32,7 +32,7 @@ const (
32
33
const (
34
divText = "----------------------------------------------------\n"
35
- divBarColor = BrightYellow
+ divColor = BrightYellow
36
podNameColor = BrightCyan
37
)
38
@@ -90,9 +90,9 @@ func main() {
90
results <- fmt.Sprintf("Error executing command on pod %s: %v", p.Name, err)
91
} else {
92
results <- fmt.Sprintf("%sPod %s\n%s%s",
93
- colorize(divBarColor, divText),
+ colorize(divColor, divText),
94
colorize(podNameColor, p.Name),
95
96
output)
97
}
98
}(pod)
0 commit comments