WithEntrypoint sets the entrypoint (main Taskfile) of the [Executor]. By default, Task will search for one of the default Taskfiles in the given directory.
(entrypoint string)
| 140 | // default, Task will search for one of the default Taskfiles in the given |
| 141 | // directory. |
| 142 | func WithEntrypoint(entrypoint string) ExecutorOption { |
| 143 | return &entrypointOption{entrypoint} |
| 144 | } |
| 145 | |
| 146 | type entrypointOption struct { |
| 147 | entrypoint string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…