Merge pull request #12420 from Keyhoh/issue/11348

fix issue #11348 zsh completion broken
pull/12364/head
Steven Powell 2021-09-28 18:41:58 -07:00 committed by GitHub
commit a502d3e2e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ __minikube_convert_bash_to_zsh() {
}
buf := new(bytes.Buffer)
err = cmd.GenBashCompletion(buf)
err = cmd.GenZshCompletion(buf)
if err != nil {
return errors.Wrap(err, "Error generating zsh completion")
}