From fa56555e06ac161769ac2a7fa4a85b5e2558a1ab Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 20 Apr 2015 17:43:31 -0500 Subject: [PATCH] Update bash_completion command to use Homebrew's version. --- .bash_profile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.bash_profile b/.bash_profile index 4233d73..e76ad1f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -56,12 +56,12 @@ alias gsd='git svn dcommit' alias gsfr='git svn fetch && git svn rebase' # Turn on Git autocomplete. -if [ -f ~/.git-completion.bash ]; then - . ~/.git-completion.bash +if [ -f `brew --prefix`/etc/bash_completion ]; then + . `brew --prefix`/etc/bash_completion fi # Vagrant configuration. -export VAGRANT_DEFAULT_PROVIDER='virtualbox' +# export VAGRANT_DEFAULT_PROVIDER='virtualbox' # Disable cowsay in Ansible. export ANSIBLE_NOCOWS=1