mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-10-16 09:27:37 +03:00
- Remove old-style build tags (the +build syntax has become obsolete with 1.17) - Remove redundant build tags from '*_windows.go' files
11 lines
247 B
Go
11 lines
247 B
Go
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)
|
|
}
|