Update logic to follow npm plugin convention
This commit is contained in:
parent
2956e7820e
commit
9b11b7e938
@ -1,16 +1,13 @@
|
|||||||
# Autocompletion for kubectl, the command line interface for Kubernetes
|
if (( $+commands[kubectl] )); then
|
||||||
#
|
__KUBECTL_COMPLETION_FILE="${ZSH_CACHE_DIR}/kubectl_completion"
|
||||||
# Author: https://github.com/pstadler
|
|
||||||
|
|
||||||
KUBECTL_COMPLETION_FILENAME="$TMPPREFIX-kubectl-completion-zsh"
|
if [[ ! -f $__KUBECTL_COMPLETION_FILE ]]; then
|
||||||
|
kubectl completion zsh >! $__KUBECTL_COMPLETION_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ ! -f "$KUBECTL_COMPLETION_FILENAME" ]]
|
[[ -f $__KUBECTL_COMPLETION_FILE ]] && source $__KUBECTL_COMPLETION_FILE
|
||||||
then
|
|
||||||
kubectl completion zsh > "$KUBECTL_COMPLETION_FILENAME"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $commands[kubectl] ]; then
|
unset __KUBECTL_COMPLETION_FILE
|
||||||
source "$KUBECTL_COMPLETION_FILENAME"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# This command is used ALOT both below and in daily life
|
# This command is used ALOT both below and in daily life
|
||||||
|
Loading…
Reference in New Issue
Block a user