1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-24 05:36:19 +02:00
lazygit/pkg/commands/oscommands/cmd_obj_runner_default.go

26 lines
512 B
Go
Raw Normal View History

2021-09-16 21:38:43 +08:00
//go:build !windows
// +build !windows
package oscommands
import (
"os/exec"
2019-02-16 10:18:38 +11:00
2020-03-25 10:37:10 +01:00
"github.com/creack/pty"
)
2022-01-02 10:34:33 +11:00
// we define this separately for windows and non-windows given that windows does
// not have great PTY support and we need a PTY to handle a credential request
func (self *cmdObjRunner) getCmdHandler(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
2018-11-06 20:24:10 +01:00
}