gin
gin copied to clipboard
command.ProcessState could be nil
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)
}