(e *Executor)
| 604 | } |
| 605 | |
| 606 | func (o *ioOption) ApplyToExecutor(e *Executor) { |
| 607 | e.Stdin = o.rw |
| 608 | e.Stdout = o.rw |
| 609 | e.Stderr = o.rw |
| 610 | } |
| 611 | |
| 612 | // WithVersionCheck tells the [Executor] whether or not to check the version of |
| 613 | func WithVersionCheck(enableVersionCheck bool) ExecutorOption { |
nothing calls this directly
no outgoing calls
no test coverage detected