1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

fix variable name typo

This commit is contained in:
Jason Hutchinson 2017-05-26 13:29:06 -05:00
parent c11c3a55de
commit 932e4edeaf

View file

@ -1355,9 +1355,9 @@ prompt_dir_writable() {
# Kubernetes Current Context
prompt_kubecontext() {
local kubectl=$(kubectl version 2>/dev/null)
local kubectl_version=$(kubectl version 2>/dev/null)
if [[ -n "kubectl_version" ]]; then
if [[ -n "$kubectl_version" ]]; then
# Get the current Kubernetes config context's namespaece
local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')
# Get the current Kuberenetes context