mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-10 20:05:50 +02:00
13 lines
285 B
Go
13 lines
285 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package oscommands
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func (self *cmdObjRunner) getCmdHandlerPty(cmd *exec.Cmd) (*cmdHandler, error) {
|
|
// We don't have PTY support on Windows yet, so we just return a non-PTY handler.
|
|
return self.getCmdHandlerNonPty(cmd)
|
|
}
|