summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-04-06 08:58:47 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-06-08 08:34:08 +0900
commit35360437700d2406f766f463bd9c5c7f8aaf5dd1 (patch)
tree5b714c9ac0fa3de6cb84f5e5d06dff4c62e5dbf4
parent129568cce02dd4c96dc7e1b685819f6cf79d1bcc (diff)
downloaddotfiles-35360437700d2406f766f463bd9c5c7f8aaf5dd1.tar.gz
srem into $PATH on Windows
Not such an elegant way of making it available. I hope to improve on my srem installation on both Windows and GNU/Linux.
-rw-r--r--.bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index 501709c9..9729e2d2 100644
--- a/.bashrc
+++ b/.bashrc
@@ -14,6 +14,11 @@ if [ -d "$CYG_APPDATA/cabal/bin" ]; then
export PATH="$CYG_APPDATA/cabal/bin:$PATH"
fi
+# And srem.
+if [ -d "$HOME/src/srem/.cabal-sandbox/bin" ]; then
+ export PATH="$HOME/src/srem/.cabal-sandbox/bin:$PATH"
+fi
+
# --- aliases
alias g='git'