From 9598a855fa55f9f126f099a4ab792335d2dc1a69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Sat, 25 May 2019 10:24:43 +0200 Subject: [PATCH] aws: check for existence of config file in aws_profiles Fixes #7872 --- plugins/aws/aws.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/aws/aws.plugin.zsh b/plugins/aws/aws.plugin.zsh index d70a64fcc..b78cd2ac1 100644 --- a/plugins/aws/aws.plugin.zsh +++ b/plugins/aws/aws.plugin.zsh @@ -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