(ctx context.Context, cmd string, args ...string)
| 98 | } |
| 99 | |
| 100 | func (e priorityExecer) PTYCommandContext(ctx context.Context, cmd string, args ...string) *pty.Cmd { |
| 101 | cmd, args = e.agentExecCmd(cmd, args...) |
| 102 | return pty.CommandContext(ctx, cmd, args...) |
| 103 | } |
| 104 | |
| 105 | func (e priorityExecer) agentExecCmd(cmd string, args ...string) (string, []string) { |
| 106 | execArgs := []string{"agent-exec"} |
nothing calls this directly
no test coverage detected