From b62044a90d6833e693d6421590f92fb6ad460475 Mon Sep 17 00:00:00 2001 From: David Kerkeslager Date: Wed, 15 Oct 2014 01:35:28 -0400 Subject: [PATCH] Adding a workaround so installed binaries get loaded into the path --- .bashrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.bashrc b/.bashrc index d33a38d..2734999 100644 --- a/.bashrc +++ b/.bashrc @@ -55,6 +55,13 @@ 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. -- 2.20.1