speed up aws_eb_env prompt

pull/71/head
romkatv 5 years ago
parent 5b703c0db0
commit dc6fdf52b7

@ -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
} }
################################################################ ################################################################

Loading…
Cancel
Save