bug fix: correctly parse kubectl config when current-context has metacharacters (#1767)

This commit is contained in:
Roman Perepelitsa 2022-02-14 10:10:38 +01:00
parent a83e53005f
commit 5fe28f0a01

View file

@ -4464,7 +4464,7 @@ prompt_kubecontext() {
{
(( pos <= $#cfg )) || return
shift $pos cfg
pos=${cfg[(i) name: $name]}
pos=${cfg[(i) name: ${(b)name}]}
(( pos <= $#cfg )) || return
(( --pos ))
for ((; pos > 0; --pos)); do