From 38c7d77efd381c9dbad746a53a8f57951264ad44 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Thu, 16 Nov 2023 21:39:06 -0500 Subject: [PATCH] Fixed typo in kubectl alias --- .local/dotfiles/aliases/kubectl.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/dotfiles/aliases/kubectl.zsh b/.local/dotfiles/aliases/kubectl.zsh index fc73981..112d570 100644 --- a/.local/dotfiles/aliases/kubectl.zsh +++ b/.local/dotfiles/aliases/kubectl.zsh @@ -1,3 +1,3 @@ -if (( ! ${+commands[kubectl]} )); then +if (( ${+commands[kubectl]} )); then alias k=kubectl fi