WithDownload forces the [Executor] to download a fresh copy of the taskfile from the remote source.
(download bool)
| 227 | // WithDownload forces the [Executor] to download a fresh copy of the taskfile |
| 228 | // from the remote source. |
| 229 | func WithDownload(download bool) ExecutorOption { |
| 230 | return &downloadOption{download} |
| 231 | } |
| 232 | |
| 233 | type downloadOption struct { |
| 234 | download bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…