From f5ebe824488299061adc94e05cea742cd0a0d040 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Tue, 8 Mar 2016 20:10:52 +0000 Subject: [PATCH] Prevent errors popping up on non-OS X machines. --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index aa997d6..8f34f15 100755 --- a/.bashrc +++ b/.bashrc @@ -80,7 +80,7 @@ fi # Add bash completion scripts #-------------------------------------------------------------------------------- if [ -f $(brew --prefix 2>/dev/null)/etc/bash_completion ]; then - . $(brew --prefix)/etc/bash_completion + . $(brew --prefix 2>/dev/null)/etc/bash_completion fi #--------------------------------------------------------------------------------