(ctx context.Context, cmd string, args ...string)
| 69 | } |
| 70 | |
| 71 | func (e *commandEnvExecer) PTYCommandContext(ctx context.Context, cmd string, args ...string) *pty.Cmd { |
| 72 | name, args, dir, env := e.prepare(ctx, cmd, args...) |
| 73 | c := e.execer.PTYCommandContext(ctx, name, args...) |
| 74 | c.Dir = dir |
| 75 | c.Env = env |
| 76 | return c |
| 77 | } |
nothing calls this directly
no test coverage detected