Execute runs the command with live terminal output and no returned output.
()
| 88 | |
| 89 | // Execute runs the command with live terminal output and no returned output. |
| 90 | func (e *executor) Execute() error { |
| 91 | return e.executeWithRetry(nil) |
| 92 | } |
| 93 | |
| 94 | // executeWithRetry calls doExecute, retrying up to retryMaxAttempts times on failure. |
| 95 | func (e *executor) executeWithRetry(output io.Writer) error { |