]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
shell/env: Add ~/.shell/bin to PATH.
authorSimon Ruderich <simon@ruderich.org>
Fri, 12 Nov 2010 20:38:21 +0000 (21:38 +0100)
committerSimon Ruderich <simon@ruderich.org>
Fri, 12 Nov 2010 20:38:21 +0000 (21:38 +0100)
shell/env

index a71dfc718784813d608e2a8ab7bdbd0208c24e17..15d8f4590aba5fa1fab570528f318d09ebde9f7e 100644 (file)
--- a/shell/env
+++ b/shell/env
@@ -9,13 +9,16 @@ source_debug ". ~/.shell/env"
 LANG=en_US.UTF-8
 export LANG
 
-# Add ~/bin and ~/.bin to PATH if available.
+# Add ~/bin and ~/.bin and ~/.shell/bin to PATH if available.
 if [ -d ~/bin ]; then
     PATH=~/bin:$PATH
 fi
 if [ -d ~/.bin ]; then
     PATH=~/.bin:$PATH
 fi
+if [ -d ~/.shell/bin ]; then
+    PATH=~/.shell/bin:$PATH
+fi
 
 # Use Vim as editor.
 EDITOR=vim