cmdWithStderr augments exec.Cmd by adding stderr to the error message
| 27 | |
| 28 | // cmdWithStderr augments exec.Cmd by adding stderr to the error message |
| 29 | type cmdWithStderr struct { |
| 30 | *exec.Cmd |
| 31 | } |
| 32 | |
| 33 | func (c cmdWithStderr) Output() ([]byte, error) { |
| 34 | if isVerbose, _ := utils.IsDebugEnabled(); isVerbose { |
nothing calls this directly
no outgoing calls
no test coverage detected