use faint for "in progress" to distingish completed/failed

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2020-04-29 15:35:34 +02:00
parent 814259ae33
commit f69ada632a
No known key found for this signature in database
GPG Key ID: 9858809D6F8F6E7E
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ func NewProgressWriter() ProgressWriter {
}
const (
cyan = "36;1"
blue = "36;2"
red = "31;1"
green = "32;1"
)
@ -126,7 +126,7 @@ func (c ansiConsole) KO(s string) string {
}
func (c ansiConsole) WiP(s string) string {
return ansiColor(cyan, s)
return ansiColor(blue, s)
}
func ansiColor(code, s string) string {