WithForceAll ensures that the [Executor] always runs all tasks (including subtasks), even when fingerprinting or prompts would normally stop them.
(forceAll bool)
| 199 | // WithForceAll ensures that the [Executor] always runs all tasks (including |
| 200 | // subtasks), even when fingerprinting or prompts would normally stop them. |
| 201 | func WithForceAll(forceAll bool) ExecutorOption { |
| 202 | return &forceAllOption{forceAll} |
| 203 | } |
| 204 | |
| 205 | type forceAllOption struct { |
| 206 | forceAll bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…