From 2c135dd631019a251e073a0f4e86267cf12c50c0 Mon Sep 17 00:00:00 2001 From: Roman Perepelitsa Date: Sat, 17 Jul 2021 10:27:01 +0200 Subject: make terraform_version consistent with other *_version segments (#1487) --- internal/p10k.zsh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'internal') diff --git a/internal/p10k.zsh b/internal/p10k.zsh index 510bf3c5..6fc78f31 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -4888,10 +4888,12 @@ _p9k_prompt_terraform_init() { } function prompt_terraform_version() { - _p9k_cached_cmd 0 '' terraform --version - [[ $_p9k__ret == (#b)Terraform\ v([[:digit:].]##)* ]] - local terraform_version=$match[1] - _p9k_prompt_segment "$0$state" $_p9k_color1 red TERRAFORM_ICON 0 '' "tf:$terraform_version" + _p9k_cached_cmd 0 '' terraform --version || return + local v=${_p9k__ret#Terraform v} + (( $#v < $#_p9k__ret )) || return + v=${v%%$'\n'*} + [[ -n $v ]] || return + _p9k_prompt_segment $0 $_p9k_color1 blue TERRAFORM_ICON 0 '' $v } _p9k_prompt_terraform_version_init() { -- cgit v1.2.3