summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-02-23 12:40:51 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-06-10 15:44:04 +0900
commit88a50c7f65ada46e7d459860063dd254bc111bc0 (patch)
treefee7d620a05b847c58bbc3c099f54a4746b99d04
parent04696d8b013213379f6cb5ba8ecb0edb91b0c1a9 (diff)
downloaddotfiles-88a50c7f65ada46e7d459860063dd254bc111bc0.tar.gz
add cabal bin to path on windows
-rw-r--r--.bashrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index 8713f19b..e356b731 100644
--- a/.bashrc
+++ b/.bashrc
@@ -2,6 +2,12 @@
PS1='\[\033[00;33m\]\h \[\033[00;32m\]\w \[\033[00;34m\]\$\[\033[00m\] '
+# --- additions to $PATH
+
+if [ -d "$APPDATA/cabal/bin" ]; then
+ export PATH="$APPDATA/cabal/bin:$PATH"
+fi
+
# --- aliases
alias g='git'