Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a2269 commit 95c891fCopy full SHA for 95c891f
expect/pty/pty_windows.go
@@ -7,9 +7,9 @@ import (
7
"io"
8
"os"
9
10
- "golang.org/x/sys/windows"
+ "golang.org/x/sys/windows"
11
12
- "github.com/coder/coder/expect/conpty"
+ "github.com/coder/coder/expect/conpty"
13
)
14
15
func newPty() (Pty, error) {
@@ -18,7 +18,7 @@ func newPty() (Pty, error) {
18
if vsn.MajorVersion < 10 ||
19
vsn.BuildNumber < 17763 {
20
return pipePty()
21
- }
+ }
22
23
return conpty.New(80, 80)
24
}
@@ -43,7 +43,7 @@ func pipePty() (Pty, error) {
43
44
45
type pipePtyVal struct {
46
- inputR, inputW *os.File
+ inputR, inputW *os.File
47
outputR, outputW *os.File
48
49
0 commit comments