Skip to content

Commit 34602b0

Browse files
committed
only set term if rsh is running /bin/sh
also set it without using env so it will work in containers that don't have /bin/env
1 parent a5eaf99 commit 34602b0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pkg/cmd/cli/cmd/rsh.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,9 @@ func (o *RshOptions) Validate() error {
155155
// Run starts a remote shell session on the server
156156
func (o *RshOptions) Run() error {
157157
// Insert the TERM into the command to be run
158-
term := fmt.Sprintf("TERM=%s", util.Env("TERM", "xterm"))
159-
o.Command = append([]string{"env", term}, o.Command...)
160-
158+
if len(o.Command) == 1 && o.Command[0] == o.Executable {
159+
termsh := fmt.Sprintf("TERM=%q %s", util.Env("TERM", "xterm"), o.Executable)
160+
o.Command = append(o.Command, "-c", termsh)
161+
}
161162
return o.ExecOptions.Run()
162163
}

0 commit comments

Comments
 (0)