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-08 08:34:04 +0900
commita1ebe76d7f097d7d0522ab522de7ef80feba5484 (patch)
tree7cd332cd3eed833a098359fae1302771d0b43666
parent8d6c3503ff50ac91647d6e9bdc95fff00cdeed21 (diff)
downloaddotfiles-a1ebe76d7f097d7d0522ab522de7ef80feba5484.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'