Merge pull request #26006 from benley/helm-completion

kubernetes-helm: Enable bash and zsh completion

authored by Jaka Hudoklin and committed by GitHub 812e8ed1 bba5b1c4

+4
+4
pkgs/applications/networking/cluster/helm/default.nix
··· 34 34 tar -xvzf $src 35 35 cp ${arch}/helm $out/bin/${pname} 36 36 chmod +x $out/bin/${pname} 37 + mkdir -p $out/share/bash-completion/completions 38 + mkdir -p $out/share/zsh/site-functions 39 + $out/bin/helm completion bash > $out/share/bash-completion/completions/helm 40 + $out/bin/helm completion zsh > $out/share/zsh/site-functions/_helm 37 41 ''; 38 42 39 43 meta = with stdenv.lib; {