Change instructions for completion bash on OS X

OS X default version of bash doesn't support process substitution.
https://github.com/kubernetes/minikube/issues/844#issuecomment-262587570
pull/874/head
Matt Rickard 2016-12-01 14:19:30 -08:00
parent cdeccff598
commit e7afea8215
2 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,8 @@ const longDescription = `
OS X:
$ brew install bash-completion
$ source $(brew --prefix)/etc/bash_completion
$ source <(minikube completion bash)
$ minikube completion bash > ~/.minikube-completion
$ source ~/.minikube-completion
Ubuntu:
$ apt-get install bash-completion
$ source /etc/bash-completion

View File

@ -12,7 +12,8 @@ Outputs minikube shell completion for the given shell (bash)
OS X:
$ brew install bash-completion
$ source $(brew --prefix)/etc/bash_completion
$ source <(minikube completion bash)
$ minikube completion bash > ~/.minikube-completion
$ source ~/.minikube-completion
Ubuntu:
$ apt-get install bash-completion
$ source /etc/bash-completion