oh-my-bash/completions/minikube.completion.sh
SOPHAL HONG fdd28c810a completions/minikube: Add minikube completion (#130)
Co-authored-by: sophal <hongsophal@github.com>
2020-06-11 15:22:58 +07:00

9 lines
141 B
Bash

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