mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 03:00:11 +00:00
[zsh] Add .cabal/bin to PATH if available
Add locally installed Haskell binaries to the path
This commit is contained in:
parent
070f63a117
commit
d0af2d8172
1 changed files with 4 additions and 0 deletions
4
.zshrc
4
.zshrc
|
@ -42,3 +42,7 @@ if [ ! -d ${HOME}/.cask ]; then
|
|||
curl -fsSkL https://raw.github.com/cask/cask.el/master/go | python
|
||||
fi
|
||||
export PATH="${HOME}/.cask/bin:$PATH"
|
||||
|
||||
if [ -d ${HOME}/.cabal/bin ]; then
|
||||
export PATH="${HOME}/.cabal/bin:$PATH"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue