projects
/
dotfiles
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35a42e3
)
Adding a workaround so installed binaries get loaded into the path
author
David Kerkeslager
<kerkeslager@gmail.com>
Wed, 15 Oct 2014 05:35:28 +0000
(
01:35
-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
d33a38d
..
2734999
100644
(file)
--- 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.