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

Fix of k8s shorter segment

My latest PR #676 seemed to have been incompatible with #661 - I did my PR on top of master instead of next. This one is done on top of next and should fix the current not so great state of next (prints nothing). Sorry!
This commit is contained in:
David Jetelina 2017-12-05 10:21:31 +01:00 committed by GitHub
parent 3fe9b83ebb
commit ea062a1708
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1430,11 +1430,11 @@ prompt_kubecontext() {
local k8s_final_text=""
if [[ "$k8s_context" == "k8s_namespace" ]]; then
if [[ "$cur_ctx" == "cur_namespace" ]]; then
# No reason to print out the same identificator twice
k8s_final_text="$k8s_context"
k8s_final_text="$cur_ctx"
else
k8s_final_text="$k8s_context/$k8s_namespace"
k8s_final_text="$cur_ctx/$cur_namespace"
fi
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_final_text" "KUBERNETES_ICON"