WithDownload forces the [Reader] to download a fresh copy of the taskfile from the remote source.
(download bool)
| 101 | // WithDownload forces the [Reader] to download a fresh copy of the taskfile |
| 102 | // from the remote source. |
| 103 | func WithDownload(download bool) ReaderOption { |
| 104 | return &downloadOption{download: download} |
| 105 | } |
| 106 | |
| 107 | type downloadOption struct { |
| 108 | download bool |
no outgoing calls
no test coverage detected
searching dependent graphs…