buildkit/vendor/github.com/containerd/console
Sebastiaan van Stijn a9d16cea41
go.mod: github.com/containerd/console v1.0.1
full diff: https://github.com/containerd/console/compare/v1.0.0...v1.0.1

Fixes compatibility with current versions of golang.org/x/sys

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-09-24 23:09:21 +02:00
..
.golangci.yml go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
LICENSE vendor: update containerd and continuity 2019-04-25 23:33:52 -07:00
README.md vendor: update containerd and continuity 2019-04-25 23:33:52 -07:00
console.go go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
console_linux.go vendor: update containerd (and various packages) 2020-02-28 10:24:10 +09:00
console_unix.go go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
console_windows.go vendor: update containerd (and various packages) 2020-02-28 10:24:10 +09:00
go.mod go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
go.sum go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
tc_darwin.go go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
tc_freebsd.go update containerd (binary: v1.0.3, library: Apr 3, 2018) 2018-04-04 17:22:20 +09:00
tc_linux.go go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
tc_netbsd.go go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00
tc_openbsd_cgo.go update containerd (binary: v1.0.3, library: Apr 3, 2018) 2018-04-04 17:22:20 +09:00
tc_openbsd_nocgo.go update containerd (binary: v1.0.3, library: Apr 3, 2018) 2018-04-04 17:22:20 +09:00
tc_solaris_cgo.go update containerd (binary: v1.0.3, library: Apr 3, 2018) 2018-04-04 17:22:20 +09:00
tc_solaris_nocgo.go update containerd (binary: v1.0.3, library: Apr 3, 2018) 2018-04-04 17:22:20 +09:00
tc_unix.go go.mod: github.com/containerd/console v1.0.1 2020-09-24 23:09:21 +02:00

README.md

console

Build Status

Golang package for dealing with consoles. Light on deps and a simple API.

Modifying the current process

current := console.Current()
defer current.Reset()

if err := current.SetRaw(); err != nil {
}
ws, err := current.Size()
current.Resize(ws)

Project details

console is a containerd sub-project, licensed under the Apache 2.0 license. As a containerd sub-project, you will find the:

information in our containerd/project repository.