()
| 152 | } |
| 153 | |
| 154 | func (cmd *cmdWrapper) Wait() error { |
| 155 | err := (*exec.Cmd)(cmd).Wait() |
| 156 | return handleError(err) |
| 157 | } |
| 158 | |
| 159 | // Run is part of the Cmd interface. |
| 160 | func (cmd *cmdWrapper) Run() error { |
nothing calls this directly
no test coverage detected