in main/status.go [130:146]
func statusMsg(c cmd, t Type, msg string) string {
s := c.name
switch t {
case StatusSuccess:
s += " succeeded"
case StatusTransitioning:
s += " in progress"
case StatusError:
s += " failed"
}
if msg != "" {
// append the original
s += ": " + msg
}
return s
}