diff options
author | Carlo Sala <carlosalag@protonmail.com> | 2022-02-24 19:23:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-24 19:23:15 +0100 |
commit | 97e6989729efce1f091d02e0274392ed547b9bb4 (patch) | |
tree | 6767eb0064008dde69372dba8e60b6859fd5d052 /plugins/helm | |
parent | 28dc8c58ef14325d94feb7f34616839c7975e7d0 (diff) | |
download | zsh-97e6989729efce1f091d02e0274392ed547b9bb4.tar.gz zsh-97e6989729efce1f091d02e0274392ed547b9bb4.tar.bz2 zsh-97e6989729efce1f091d02e0274392ed547b9bb4.zip |
fix(helm): support completion for snap installs (#10723)
Diffstat (limited to 'plugins/helm')
-rw-r--r-- | plugins/helm/helm.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/helm/helm.plugin.zsh b/plugins/helm/helm.plugin.zsh index cadfa551a..05bb19a44 100644 --- a/plugins/helm/helm.plugin.zsh +++ b/plugins/helm/helm.plugin.zsh @@ -14,9 +14,9 @@ command mkdir -p "$ZSH_CACHE_DIR/completions" # If the completion file does not exist, generate it and then source it # Otherwise, source it and regenerate in the background 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" else 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 |