From 83d80fa308f6f8a496205a1ad5cb2ae4c4be55a6 Mon Sep 17 00:00:00 2001 From: Roman Perepelitsa Date: Sat, 17 Jul 2021 10:38:22 +0200 Subject: [PATCH] don't leak 'state' local parameter --- internal/p10k.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/p10k.zsh b/internal/p10k.zsh index 6fc78f3..2099c32 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -1160,7 +1160,7 @@ function _p9k_parse_aws_config() { # AWS Profile prompt_aws() { typeset -g P9K_AWS_PROFILE="${AWS_VAULT:-${AWSUME_PROFILE:-${AWS_PROFILE:-$AWS_DEFAULT_PROFILE}}}" - local pat class + local pat class state for pat class in "${_POWERLEVEL9K_AWS_CLASSES[@]}"; do if [[ $P9K_AWS_PROFILE == ${~pat} ]]; then [[ -n $class ]] && state=_${${(U)class}//İ/I} @@ -4536,7 +4536,7 @@ prompt_azure() { fi _p9k_cache_stat_set "$name" fi - local pat class + local pat class state for pat class in "${_POWERLEVEL9K_AZURE_CLASSES[@]}"; do if [[ $name == ${~pat} ]]; then [[ -n $class ]] && state=_${${(U)class}//İ/I} @@ -4873,7 +4873,7 @@ function prompt_terraform() { _p9k_read_word ${${TF_DATA_DIR:-.terraform}:A}/environment && ws=$_p9k__ret fi [[ -z $ws || $ws == default && $_POWERLEVEL9K_TERRAFORM_SHOW_DEFAULT == 0 ]] && return - local pat class + local pat class state for pat class in "${_POWERLEVEL9K_TERRAFORM_CLASSES[@]}"; do if [[ $ws == ${~pat} ]]; then [[ -n $class ]] && state=_${${(U)class}//İ/I}