CombinedOutput is part of the Cmd interface.
()
| 108 | |
| 109 | // CombinedOutput is part of the Cmd interface. |
| 110 | func (cmd *cmdWrapper) CombinedOutput() ([]byte, error) { |
| 111 | out, err := (*osexec.Cmd)(cmd).CombinedOutput() |
| 112 | return out, handleError(err) |
| 113 | } |
| 114 | |
| 115 | func (cmd *cmdWrapper) Output() ([]byte, error) { |
| 116 | out, err := (*osexec.Cmd)(cmd).Output() |