summaryrefslogtreecommitdiffstats
path: root/pkg/commands/oscommands/exec_live_default.go
blob: 827db9ed3275fd518189991d6a1db381756e76d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//go:build !windows
// +build !windows

package oscommands

import (
	"io"
	"os/exec"

	"github.com/creack/pty"
)

func RunCommandWithOutputLiveWrapper(
	c *OSCommand,
	cmdObj ICmdObj,
	writer io.Writer,
	output func(string) string,
) error {
	return RunCommandWithOutputLiveAux(
		c,
		cmdObj,
		writer,
		output,
		func(cmd *exec.Cmd) (*cmdHandler, error) {
			ptmx, err := pty.Start(cmd)
			if err != nil {
				return nil, err
			}

			return &cmdHandler{
				stdoutPipe: ptmx,
				stdinPipe:  ptmx,
				close:      ptmx.Close,
			}, nil
		},
	)
}