changeset 110:9e0e1b78d0dd

Updated PATH for Homebrew stuff on Mac.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 28 Aug 2012 21:26:42 -0700
parents 5bd55d06cf75
children 92a93c9a9ad4
files bashrc/bashrc
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/bashrc/bashrc	Tue Aug 28 21:26:10 2012 -0700
+++ b/bashrc/bashrc	Tue Aug 28 21:26:42 2012 -0700
@@ -5,15 +5,15 @@
 # Personal binaries.
 PATH=$HOME/bin:$PATH
 
-# Local binaries.
-PATH=/opt/local/bin:/opt/local/sbin:$PATH
-
-# Mac developer binaries
-PATH=/Developer/usr/bin:$PATH
+# Homebrew binaries.
+PATH=/usr/local/bin:$PATH
 
 # Python from Homebrew
 PATH=/usr/local/share/python:$PATH
 
+# Ruby from Homebrew
+PATH=/usr/local/Cellar/ruby/1.9.3-p194/bin:$PATH
+
 # Done!
 export PATH