From: David Kerkeslager Date: Wed, 15 Oct 2014 05:42:17 +0000 (-0400) Subject: Decided I only want user-installed cabal stuff X-Git-Url: https://code.kerkeslager.com/?p=dotfiles;a=commitdiff_plain;h=dabd503f12259133e83f10bb10b558de2d38221b Decided I only want user-installed cabal stuff --- diff --git a/.bashrc b/.bashrc index 08021f5..fad15ea 100644 --- a/.bashrc +++ b/.bashrc @@ -55,10 +55,10 @@ if [ -d $HOME/bin ]; then export PATH fi -# Put $HOME/Library/Haskell/bin on the path. Installing cabal doesn't +# Put $HOME/.cabal/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" +if [ -d $HOME/.cabal/bin ]; then + PATH="$HOME/.cabal/bin:$PATH" export PATH fi