1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-11-22 12:20:07 +00:00

speed up aws_eb_env prompt

This commit is contained in:
romkatv 2019-05-22 14:09:02 +02:00
parent 5b703c0db0
commit dc6fdf52b7

View file

@ -377,11 +377,9 @@ prompt_aws() {
################################################################ ################################################################
# Current Elastic Beanstalk environment # Current Elastic Beanstalk environment
prompt_aws_eb_env() { prompt_aws_eb_env() {
# TODO(roman): This is clearly broken. Fix it. [[ -r .elasticbeanstalk/config.yml ]] || return
local eb_env=$(grep environment .elasticbeanstalk/config.yml 2> /dev/null | awk '{print $2}') local v=${=$(grep environment .elasticbeanstalk/config.yml 2>/dev/null)[2]}
if [[ -n "$eb_env" ]]; then [[ -n $v ]] && "$1_prompt_segment" "$0" "$2" black green 'AWS_EB_ICON' 0 '' "${v//\%/%%}"
"$1_prompt_segment" "$0" "$2" black green 'AWS_EB_ICON' 0 '' "${eb_env//\%/%%}"
fi
} }
################################################################ ################################################################