mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Errors from staticcheck: cmd/preferredimports/preferredimports.go:38:2: package golang.org/x/crypto/ssh/terminal is deprecated: this package moved to golang.org/x/term. (SA1019) vendor/k8s.io/client-go/plugin/pkg/client/auth/exec/exec.go:36:2: package golang.org/x/crypto/ssh/terminal is deprecated: this package moved to golang.org/x/term. (SA1019) vendor/k8s.io/client-go/tools/clientcmd/auth_loaders.go:26:2: package golang.org/x/crypto/ssh/terminal is deprecated: this package moved to golang.org/x/term. (SA1019) Please review the above warnings. You can test via: hack/verify-staticcheck.sh <failing package> If the above warnings do not make sense, you can exempt the line or file. See: https://staticcheck.io/docs/#ignoring-problems generated: - hack/update-internal-modules.sh - hack/lint-dependencies.sh - hack/update-vendor.sh Signed-off-by: Stephen Augustus <foo@auggie.dev>
20 lines
727 B
Markdown
20 lines
727 B
Markdown
# Go terminal/console support
|
|
|
|
[](https://pkg.go.dev/golang.org/x/term)
|
|
|
|
This repository provides Go terminal and console support packages.
|
|
|
|
## Download/Install
|
|
|
|
The easiest way to install is to run `go get -u golang.org/x/term`. You can
|
|
also manually git clone the repository to `$GOPATH/src/golang.org/x/term`.
|
|
|
|
## Report Issues / Send Patches
|
|
|
|
This repository uses Gerrit for code changes. To learn how to submit changes to
|
|
this repository, see https://golang.org/doc/contribute.html.
|
|
|
|
The main issue tracker for the term repository is located at
|
|
https://github.com/golang/go/issues. Prefix your issue with "x/term:" in the
|
|
subject line, so it is easy to find.
|