Run is part of the Cmd interface.
()
| 102 | |
| 103 | // Run is part of the Cmd interface. |
| 104 | func (cmd *cmdWrapper) Run() error { |
| 105 | err := (*osexec.Cmd)(cmd).Run() |
| 106 | return handleError(err) |
| 107 | } |
| 108 | |
| 109 | // CombinedOutput is part of the Cmd interface. |
| 110 | func (cmd *cmdWrapper) CombinedOutput() ([]byte, error) { |