SubprocessExecutor runs hooks through a local shell command boundary.
| 87 | |
| 88 | // SubprocessExecutor runs hooks through a local shell command boundary. |
| 89 | type SubprocessExecutor struct { |
| 90 | command string |
| 91 | args []string |
| 92 | dir string |
| 93 | env map[string]string |
| 94 | secretEnv map[string]string |
| 95 | secretResolver SecretRefResolver |
| 96 | registry *toolruntime.Registry |
| 97 | } |
| 98 | |
| 99 | var _ Executor = (*SubprocessExecutor)(nil) |
| 100 |
nothing calls this directly
no outgoing calls
no test coverage detected