WithForce ensures that the [Executor] always runs a task, even when fingerprinting or prompts would normally stop it.
(force bool)
| 185 | // WithForce ensures that the [Executor] always runs a task, even when |
| 186 | // fingerprinting or prompts would normally stop it. |
| 187 | func WithForce(force bool) ExecutorOption { |
| 188 | return &forceOption{force} |
| 189 | } |
| 190 | |
| 191 | type forceOption struct { |
| 192 | force bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…