(ctx context.Context, cmd string, args ...string)
| 93 | } |
| 94 | |
| 95 | func (e priorityExecer) CommandContext(ctx context.Context, cmd string, args ...string) *exec.Cmd { |
| 96 | cmd, args = e.agentExecCmd(cmd, args...) |
| 97 | return exec.CommandContext(ctx, cmd, args...) |
| 98 | } |
| 99 | |
| 100 | func (e priorityExecer) PTYCommandContext(ctx context.Context, cmd string, args ...string) *pty.Cmd { |
| 101 | cmd, args = e.agentExecCmd(cmd, args...) |