projects
/
dotfiles
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2504e13
)
Run homebrew programs instead of system-provided programs.
author
David Kerkeslager
<kerkeslager@gmail.com>
Fri, 19 Oct 2012 13:10:18 +0000
(09:10 -0400)
committer
David Kerkeslager
<david.kerkeslager@globalpovertyproject.com>
Tue, 4 Aug 2015 15:01:20 +0000
(15:01 +0000)
.bashrc
patch
|
blob
|
history
diff --git
a/.bashrc
b/.bashrc
index
68d85a6
..
d33a38d
100644
(file)
--- a/
.bashrc
+++ b/
.bashrc
@@
-55,6
+55,12
@@
if [ -d $HOME/bin ]; then
export PATH
fi
+# Put /usr/local/bin (where homebrew installs stuff) before /usr/bin on the
+# path. This means that if a program exists at both locations, calls to that
+# program will use the homebrew version rather than the system version.
+PATH="/usr/local/bin:$PATH"
+export PATH
+
# Run a machine-specific bashrc (if it exists).
if [ -f $HOME/.bashrc_local ]; then
source $HOME/.bashrc_local