minikube: fix spelling (#9270)

This commit is contained in:
Olivier Lemasle 2020-09-29 23:35:29 +02:00 committed by GitHub
parent 274df9dc29
commit 71cc861806
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,13 @@
# Autocompletion for Minikube. # Autocompletion for Minikube.
# #
if (( $+commands[minikube] )); then if (( $+commands[minikube] )); then
__MINICUBE_COMPLETION_FILE="${ZSH_CACHE_DIR}/minicube_completion" __MINIKUBE_COMPLETION_FILE="${ZSH_CACHE_DIR}/minikube_completion"
if [[ ! -f $__MINICUBE_COMPLETION_FILE ]]; then if [[ ! -f $__MINIKUBE_COMPLETION_FILE ]]; then
minikube completion zsh >! $__MINICUBE_COMPLETION_FILE minikube completion zsh >! $__MINIKUBE_COMPLETION_FILE
fi fi
[[ -f $__MINICUBE_COMPLETION_FILE ]] && source $__MINICUBE_COMPLETION_FILE [[ -f $__MINIKUBE_COMPLETION_FILE ]] && source $__MINIKUBE_COMPLETION_FILE
unset __MINICUBE_COMPLETION_FILE unset __MINIKUBE_COMPLETION_FILE
fi fi