Skip to content

Commit 6c87ba7

Browse files
gmeanseljog
andauthored
Fix kubectl zsh completions typo (#792)
* fix typo * version bump --------- Co-authored-by: Eljo George <eljog@github.com>
1 parent 562305d commit 6c87ba7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/kubectl-helm-minikube/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "kubectl-helm-minikube",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"name": "Kubectl, Helm, and Minikube",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube",
66
"description": "Installs latest version of kubectl, Helm, and optionally minikube. Auto-detects latest versions and installs needed dependencies.",

src/kubectl-helm-minikube/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ if [ ${KUBECTL_VERSION} != "none" ]; then
148148
kubectl completion bash > /etc/bash_completion.d/kubectl
149149

150150
# kubectl zsh completion
151-
if [ -e "${USERHOME}}/.oh-my-zsh" ]; then
151+
if [ -e "${USERHOME}/.oh-my-zsh" ]; then
152152
mkdir -p "${USERHOME}/.oh-my-zsh/completions"
153153
kubectl completion zsh > "${USERHOME}/.oh-my-zsh/completions/_kubectl"
154154
chown -R "${USERNAME}" "${USERHOME}/.oh-my-zsh"

0 commit comments

Comments
 (0)