Merge pull request #1349 from brianphillips/helm-completion

Add support for helm completion
pull/1353/head
Nils Winkler 2019-03-27 08:47:37 +01:00 committed by GitHub
commit 15f25a88d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

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