Fix aws.plugins.zsh check rule

Check _aws_zsh_completer_path had exist or not
This commit is contained in:
Superbil 2014-12-16 00:17:58 +08:00
parent 1978a0923c
commit 7931d5ce1a
No known key found for this signature in database
GPG Key ID: 79E2966F2EA1461E
1 changed files with 5 additions and 2 deletions

View File

@ -22,7 +22,10 @@ function aws_profiles {
compctl -K aws_profiles asp
if _homebrew-installed && _awscli-homebrew-installed ; then
source $(brew --prefix)/opt/awscli/libexec/bin/aws_zsh_completer.sh
_aws_zsh_completer_path=$(brew --prefix)/opt/awscli/libexec/bin/aws_zsh_completer.sh
else
source `which aws_zsh_completer.sh`
_aws_zsh_completer_path=$(which aws_zsh_completer.sh)
fi
[ -x $_aws_zsh_completer_path ] && source $_aws_zsh_completer_path
unset _aws_zsh_completer_path