(ctx context.Context, cmd string, args ...string)
| 725 | } |
| 726 | |
| 727 | func (e *DockerEnvironment) execContext(ctx context.Context, cmd string, args ...string) *exec.Cmd { |
| 728 | c := NewCommand(cmd, args...) |
| 729 | if e.verbose { |
| 730 | e.logger.Log("dockerEnv:", c.toString()) |
| 731 | } |
| 732 | return c.exec(ctx) |
| 733 | } |
| 734 | |
| 735 | func (e *DockerEnvironment) close() { |
| 736 | if e == nil || e.closed { |
no test coverage detected