1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-22 22:00:08 +00:00

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

This commit is contained in:
Anton Stamenov 2018-12-31 21:15:56 +02:00 committed by Robby Russell
parent 3c3766fdf5
commit 0cc1266c17

View file

@ -35,7 +35,7 @@ function asp {
} }
function aws_profiles { 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 compctl -K aws_profiles asp