in main/reportstatus.go [49:65]
func statusMsg(c cmd, t StatusType, 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
}