mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 17:30:00 +00:00
godeps: update github.com/kr/pty
Signed-off-by: Mike Danese <mikedanese@google.com>
This commit is contained in:
parent
ec002e52ab
commit
aa502874c4
6
Godeps/Godeps.json
generated
6
Godeps/Godeps.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"ImportPath": "k8s.io/kubernetes",
|
"ImportPath": "k8s.io/kubernetes",
|
||||||
"GoVersion": "go1.5.1",
|
"GoVersion": "go1.5",
|
||||||
"Packages": [
|
"Packages": [
|
||||||
"./..."
|
"./..."
|
||||||
],
|
],
|
||||||
@ -692,8 +692,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/kr/pty",
|
"ImportPath": "github.com/kr/pty",
|
||||||
"Comment": "release.r56-25-g05017fc",
|
"Comment": "release.r56-29-gf7ee69f",
|
||||||
"Rev": "05017fcccf23c823bfdea560dcc958a136e54fb7"
|
"Rev": "f7ee69f31298ecbe5d2b349c711e2547a617d398"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/matttproud/golang_protobuf_extensions/pbutil",
|
"ImportPath": "github.com/matttproud/golang_protobuf_extensions/pbutil",
|
||||||
|
6
Godeps/_workspace/src/github.com/kr/pty/run.go
generated
vendored
6
Godeps/_workspace/src/github.com/kr/pty/run.go
generated
vendored
@ -18,7 +18,11 @@ func Start(c *exec.Cmd) (pty *os.File, err error) {
|
|||||||
c.Stdout = tty
|
c.Stdout = tty
|
||||||
c.Stdin = tty
|
c.Stdin = tty
|
||||||
c.Stderr = tty
|
c.Stderr = tty
|
||||||
c.SysProcAttr = &syscall.SysProcAttr{Setctty: true, Setsid: true}
|
if c.SysProcAttr == nil {
|
||||||
|
c.SysProcAttr = &syscall.SysProcAttr{}
|
||||||
|
}
|
||||||
|
c.SysProcAttr.Setctty = true
|
||||||
|
c.SysProcAttr.Setsid = true
|
||||||
err = c.Start()
|
err = c.Start()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
pty.Close()
|
pty.Close()
|
||||||
|
11
Godeps/_workspace/src/github.com/kr/pty/ztypes_arm64.go
generated
vendored
Normal file
11
Godeps/_workspace/src/github.com/kr/pty/ztypes_arm64.go
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
// Created by cgo -godefs - DO NOT EDIT
|
||||||
|
// cgo -godefs types.go
|
||||||
|
|
||||||
|
// +build arm64
|
||||||
|
|
||||||
|
package pty
|
||||||
|
|
||||||
|
type (
|
||||||
|
_C_int int32
|
||||||
|
_C_uint uint32
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user