Updating dependency github.com/konsorten/go-windows-terminal-sequences to version v1.0.2

This commit is contained in:
Davanum Srinivas
2020-03-24 13:22:54 -04:00
parent 8041c58b47
commit f4bcf812b0
26 changed files with 36 additions and 15 deletions

View File

@@ -2,7 +2,10 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["sequences.go"],
srcs = [
"sequences.go",
"sequences_dummy.go",
],
importmap = "k8s.io/kubernetes/vendor/github.com/konsorten/go-windows-terminal-sequences",
importpath = "github.com/konsorten/go-windows-terminal-sequences",
visibility = ["//visibility:public"],

View File

@@ -26,6 +26,7 @@ The tool is sponsored by the [marvin + konsorten GmbH](http://www.konsorten.de).
We thank all the authors who provided code to this library:
* Felix Kollmann
* Nicolas Perraut
## License

View File

@@ -0,0 +1,11 @@
// +build linux darwin
package sequences
import (
"fmt"
)
func EnableVirtualTerminalProcessing(stream uintptr, enable bool) error {
return fmt.Errorf("windows only package")
}