Skip to content

Commit

Permalink
Fix kubectl zsh completions typo (#792)
Browse files Browse the repository at this point in the history
* fix typo

* version bump

---------

Co-authored-by: Eljo George <eljog@github.com>
  • Loading branch information
gmeans and eljog authored Jan 17, 2024
1 parent 562305d commit 6c87ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/kubectl-helm-minikube/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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.",
Expand Down
2 changes: 1 addition & 1 deletion src/kubectl-helm-minikube/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6c87ba7

Please sign in to comment.