Move auto-complete code over to available -> enabled style

This continues the move toward the ability to turn things off with
everything turned on by default.
This commit is contained in:
Travis Swicegood
2011-06-21 09:20:40 -05:00
parent 972d58f9c5
commit e115b4c5af
7 changed files with 7 additions and 1 deletions

View File

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