WithDry tells the [Executor] to output the commands that would be run without actually running them.
(dry bool)
| 444 | // WithDry tells the [Executor] to output the commands that would be run without |
| 445 | // actually running them. |
| 446 | func WithDry(dry bool) ExecutorOption { |
| 447 | return &dryOption{dry} |
| 448 | } |
| 449 | |
| 450 | type dryOption struct { |
| 451 | dry bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…