mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-14 18:00:08 +00:00
fix(helm): support completion for snap installs (#10723)
This commit is contained in:
parent
28dc8c58ef
commit
97e6989729
1 changed files with 2 additions and 2 deletions
|
@ -14,9 +14,9 @@ command mkdir -p "$ZSH_CACHE_DIR/completions"
|
||||||
# If the completion file does not exist, generate it and then source it
|
# If the completion file does not exist, generate it and then source it
|
||||||
# Otherwise, source it and regenerate in the background
|
# Otherwise, source it and regenerate in the background
|
||||||
if [[ ! -f "$ZSH_CACHE_DIR/completions/_helm" ]]; then
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_helm" ]]; then
|
||||||
helm completion zsh >| "$ZSH_CACHE_DIR/completions/_helm"
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null
|
||||||
source "$ZSH_CACHE_DIR/completions/_helm"
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
||||||
else
|
else
|
||||||
source "$ZSH_CACHE_DIR/completions/_helm"
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
||||||
helm completion zsh >| "$ZSH_CACHE_DIR/completions/_helm" &|
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue