WithRemoteCacheDir sets the directory where remote taskfiles are cached.
(dir string)
| 296 | |
| 297 | // WithRemoteCacheDir sets the directory where remote taskfiles are cached. |
| 298 | func WithRemoteCacheDir(dir string) ExecutorOption { |
| 299 | return &remoteCacheDirOption{dir: dir} |
| 300 | } |
| 301 | |
| 302 | type remoteCacheDirOption struct { |
| 303 | dir string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…