summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-02-23 12:40:51 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-05-26 08:43:49 +0900
commit833d5337790f10dca37d162dad8c7343678c2485 (patch)
treeffe26a2c5e47a8c4277a20f6b96a40dd7a140a60
parent942b9a88e77dced6b7785a26f10293556216c2cc (diff)
downloaddotfiles-833d5337790f10dca37d162dad8c7343678c2485.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 ca7083d2..d299fc7e 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'