WithTempDirPath sets an unresolved path used to build [Executor.TempDir] during [Executor.Setup]. Relative paths are resolved from the root Taskfile directory. Use [WithTempDir] when the remote and fingerprint directories have already been resolved.
(path string)
| 171 | // directory. Use [WithTempDir] when the remote and fingerprint directories have |
| 172 | // already been resolved. |
| 173 | func WithTempDirPath(path string) ExecutorOption { |
| 174 | return &tempDirPathOption{path: path} |
| 175 | } |
| 176 | |
| 177 | type tempDirPathOption struct { |
| 178 | path string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…