gin icon indicating copy to clipboard operation
gin copied to clipboard

command.ProcessState could be nil

Open fiurthorn opened this issue 3 years ago • 0 comments

During a build error found on Linux, command.ProcessState can be nil

// if command.ProcessState.Success() {
if command.ProcessState != nil && command.ProcessState.Success() {
    b.errors = ""
} else {
    b.errors = string(output)
}

fiurthorn avatar Feb 10 '22 14:02 fiurthorn