summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-04-06 08:58:47 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-05-26 08:45:35 +0900
commit0f624abdddf1a171547049085cf08adde57a6f21 (patch)
tree470fdabd5c3092d91e3350eaa600a44bd25ca854
parentd392bf5105210a0061d809155333d7f9f2e5dd8c (diff)
downloaddotfiles-0f624abdddf1a171547049085cf08adde57a6f21.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 48d966de..fa210c9f 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'