Merge pull request #99068 from syswu/kubect_syntax_errors

correct typo in kubectl plugin command
This commit is contained in:
Kubernetes Prow Robot 2021-02-18 15:02:24 -08:00 committed by GitHub
commit ecd1d8aed3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ func (o *PluginListOptions) Run() error {
files, err := ioutil.ReadDir(dir)
if err != nil {
if _, ok := err.(*os.PathError); ok {
fmt.Fprintf(o.ErrOut, "Unable read directory %q from your PATH: %v. Skipping...\n", dir, err)
fmt.Fprintf(o.ErrOut, "Unable to read directory %q from your PATH: %v. Skipping...\n", dir, err)
continue
}