Browse Source

aws_porfiles regex is catching more lines than profiles, thus breaking completion (#7469)

Anton Stamenov 5 years ago
parent
commit
0cc1266c17
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/aws/aws.plugin.zsh

+ 1 - 1
plugins/aws/aws.plugin.zsh

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