fix variable name typo

pull/22/head
Jason Hutchinson 7 years ago
parent c11c3a55de
commit 932e4edeaf

@ -1355,9 +1355,9 @@ prompt_dir_writable() {
# Kubernetes Current Context # Kubernetes Current Context
prompt_kubecontext() { 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 # Get the current Kubernetes config context's namespaece
local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}') local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')
# Get the current Kuberenetes context # Get the current Kuberenetes context

Loading…
Cancel
Save