| 26 | ) |
| 27 | |
| 28 | type HostEnvironment struct { |
| 29 | Path string |
| 30 | TmpDir string |
| 31 | ToolCache string |
| 32 | Workdir string |
| 33 | ActPath string |
| 34 | CleanUp func() |
| 35 | StdOut io.Writer |
| 36 | } |
| 37 | |
| 38 | func (e *HostEnvironment) Create(_ []string, _ []string) common.Executor { |
| 39 | return func(_ context.Context) error { |
nothing calls this directly
no outgoing calls
no test coverage detected