WithInsecure allows the [Executor] to make insecure connections when reading remote taskfiles. By default, insecure connections are rejected.
(insecure bool)
| 213 | // WithInsecure allows the [Executor] to make insecure connections when reading |
| 214 | // remote taskfiles. By default, insecure connections are rejected. |
| 215 | func WithInsecure(insecure bool) ExecutorOption { |
| 216 | return &insecureOption{insecure} |
| 217 | } |
| 218 | |
| 219 | type insecureOption struct { |
| 220 | insecure bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…