Unverified Commit 6c87ba75 authored by gmeans's avatar gmeans Committed by GitHub

Fix kubectl zsh completions typo (#792)

* fix typo

* version bump

---------
Co-authored-by: 's avatarEljo George <eljog@github.com>
parent 562305d3
{
"id": "kubectl-helm-minikube",
"version": "1.1.5",
"version": "1.1.6",
"name": "Kubectl, Helm, and Minikube",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube",
"description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.",
......
......@@ -148,7 +148,7 @@ if [ ${KUBECTL_VERSION} != "none" ]; then
kubectl completion bash > /etc/bash_completion.d/kubectl
# kubectl zsh completion
if [ -e "${USERHOME}}/.oh-my-zsh" ]; then
if [ -e "${USERHOME}/.oh-my-zsh" ]; then
mkdir -p "${USERHOME}/.oh-my-zsh/completions"
kubectl completion zsh > "${USERHOME}/.oh-my-zsh/completions/_kubectl"
chown -R "${USERNAME}" "${USERHOME}/.oh-my-zsh"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment