buildx/vendor/github.com/containerd/console
Sebastiaan van Stijn 3c2d0aa667
vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace
this removes the replace rule that was added in 3c94621142,
to fix compile failures for macOS.

containerd/console v1.0.1 fixes those issues, which allows us to remove the
replace rule again.

full diff: https://github.com/containerd/console/compare/v1.0.0...v1.0.1

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-31 14:18:57 +01:00
..
.golangci.yml vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
LICENSE vendor: add buildkit 2019-03-23 23:11:26 -07:00
README.md vendor: add buildkit 2019-03-23 23:11:26 -07:00
console.go vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
console_linux.go Bump buildkit to master and fix versions incompatible with go mod 1.13 2020-03-04 18:37:42 +01:00
console_unix.go vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
console_windows.go Bump docker/docker and containerd/console 2019-12-10 23:37:11 +01:00
go.mod vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
go.sum vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
tc_darwin.go vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
tc_freebsd.go vendor: add buildkit 2019-03-23 23:11:26 -07:00
tc_linux.go vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
tc_netbsd.go vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01:00
tc_openbsd_cgo.go vendor: add buildkit 2019-03-23 23:11:26 -07:00
tc_openbsd_nocgo.go vendor: add buildkit 2019-03-23 23:11:26 -07:00
tc_solaris_cgo.go vendor: add buildkit 2019-03-23 23:11:26 -07:00
tc_solaris_nocgo.go vendor: add buildkit 2019-03-23 23:11:26 -07:00
tc_unix.go vendor: containerd/console v1.0.1, and remove golang.org/x/sys replace 2020-10-31 14:18:57 +01: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.