1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

aws: check for existence of config file in aws_profiles

Fixes #7872
This commit is contained in:
Marc Cornellà 2019-05-25 10:24:43 +02:00 committed by GitHub
parent fa187791ca
commit 9598a855fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,6 +33,7 @@ function aws_change_access_key {
}
function aws_profiles {
[[ -r "${AWS_CONFIG_FILE:-$HOME/.aws/config}" ]] || return 1
reply=($(grep '\[profile' "${AWS_CONFIG_FILE:-$HOME/.aws/config}"|sed -e 's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/'))
}
compctl -K aws_profiles asp aws_change_access_key