`brew` reports 'no brew found in ...' to `stdout` (at least on Solaris) resulting in a false positive.
5 lines
191 B
Bash
5 lines
191 B
Bash
if which brew >/dev/null 2>&1; then
|
|
if [ -f `brew --prefix`/Library/Contributions/brew_bash_completion.sh ]; then
|
|
. `brew --prefix`/Library/Contributions/brew_bash_completion.sh
|
|
fi
|
|
fi |