Merge pull request #622 from billmoritz/aws_profile_support
Add support for AWS Tools Profile.pull/624/head
commit
bab76a58b1
|
|
@ -352,3 +352,11 @@ if [ ! -e $BASH_IT/plugins/enabled/battery.plugin.bash ]; then
|
||||||
echo -n
|
echo -n
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
function aws_profile {
|
||||||
|
if [[ $AWS_DEFAULT_PROFILE ]]; then
|
||||||
|
echo -e "${AWS_DEFAULT_PROFILE}"
|
||||||
|
else
|
||||||
|
echo -e "default"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue