Fixed typo in kubectl alias

This commit is contained in:
Eric Renfro 2023-11-16 21:39:06 -05:00
parent b759db9ccb
commit 38c7d77efd
Signed by: psi-jack
GPG Key ID: 14977F3A50D9A5BF
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
if (( ! ${+commands[kubectl]} )); then
if (( ${+commands[kubectl]} )); then
alias k=kubectl
fi