dotfiles/.bashrc.d/brew_caveats.sh
2019-05-18 15:48:09 +02:00

10 lines
301 B
Bash

# Save other operating systems some work
if [[ $OSTYPE != darwin* ]]; then
return
fi
# brew formula bash-completion
if [[ -r /usr/local/etc/profile.d/bash_completion.sh ]]; then
export BASH_COMPLETION_COMPAT_DIR=/usr/local/etc/bash_completion.d
. /usr/local/etc/profile.d/bash_completion.sh
fi