Adding a workaround so installed binaries get loaded into the path
[dotfiles] / .bashrc
diff --git a/.bashrc b/.bashrc
index 68d85a6..2734999 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -55,6 +55,19 @@ if [ -d $HOME/bin ]; then
        export PATH
 fi
 
+# Put $HOME/Library/Haskell/bin on the path. Installing cabal doesn't
+# automatically put installed packages on the path.
+if [-d $HOME/Library/Haskell/bin ]; then
+    PATH="$HOME/Library/Haskell/bin:$PATH"
+    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