(ctx context.Context)
| 254 | } |
| 255 | |
| 256 | func (c Command) exec(ctx context.Context) *exec.Cmd { |
| 257 | return exec.CommandContext(ctx, c.Cmd, c.Args...) |
| 258 | } |
| 259 | |
| 260 | func NewCommandWithoutEntrypoint(cmd string, args ...string) Command { |
| 261 | return Command{ |
no outgoing calls
no test coverage detected