mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Merge pull request #667 from akranga/master
Add support for both AWS_PROFILE and AWS_DEFAULT_PROFILE
This commit is contained in:
commit
87acc51aca
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ prompt_anaconda() {
|
||||||
|
|
||||||
# AWS Profile
|
# AWS Profile
|
||||||
prompt_aws() {
|
prompt_aws() {
|
||||||
local aws_profile="$AWS_DEFAULT_PROFILE"
|
local aws_profile="${AWS_PROFILE:-$AWS_DEFAULT_PROFILE}"
|
||||||
|
|
||||||
if [[ -n "$aws_profile" ]]; then
|
if [[ -n "$aws_profile" ]]; then
|
||||||
"$1_prompt_segment" "$0" "$2" red white "$aws_profile" 'AWS_ICON'
|
"$1_prompt_segment" "$0" "$2" red white "$aws_profile" 'AWS_ICON'
|
||||||
|
|
Loading…
Reference in a new issue