Replace system completion with current brew file

Resolves #1046

Signed-off-by: Mike Fiedler <miketheman@gmail.com>
pull/1048/head
Mike Fiedler 2017-09-28 06:36:30 -04:00
parent a75a53b786
commit cbe63e8871
No known key found for this signature in database
GPG Key ID: 5E1134F2FAF158B9
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
if which brew >/dev/null 2>&1; then
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
if [ -f `brew --prefix`/etc/bash_completion.d/brew ]; then
. `brew --prefix`/etc/bash_completion.d/brew
fi
if [ -f `brew --prefix`/Library/Contributions/brew_bash_completion.sh ]; then