Files
bash-it/completion/available/helm.completion.bash
Brian Phillips 918ccd25d6 Add support for helm completion
Signed-off-by: Brian Phillips <bpphillips@gmail.com>
2019-03-26 10:04:19 -05:00

9 lines
141 B
Bash

#!/usr/bin/env bash
# helm (Kubernetes Package Manager) completion
if command -v helm &>/dev/null
then
eval "$(helm completion bash)"
fi