only source extant files for bash completion
This commit is contained in:
parent
7092b00739
commit
1e4249b192
|
@ -1,4 +1,8 @@
|
|||
# bash completion for awscli
|
||||
source `which aws_bash_completer`
|
||||
if which aws_bash_completer 2>&1 >/dev/null; then
|
||||
source `which aws_bash_completer`
|
||||
fi
|
||||
# bash completion for elastic beanstalk
|
||||
source `which eb_completion.bash`
|
||||
if which eb_completion.bash 2>&1 >/dev/null; then
|
||||
source `which eb_completion.bash`
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue