From e111c254973cbfc4e2cb3d6a059bf52f6f8cf571 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Thu, 11 Mar 2010 01:26:54 +0100 Subject: [PATCH] shell/env: Also add ~/.bin to PATH if it exists. --- shell/env | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell/env b/shell/env index 038de39..a916317 100644 --- a/shell/env +++ b/shell/env @@ -20,10 +20,13 @@ source_debug "sourcing ~/.shell/env" LANG=en_US.UTF-8 export LANG -# Add ~/bin to PATH if available. +# Add ~/bin and ~/.bin to PATH if available. if [ -d ~/bin ]; then PATH=~/bin:$PATH fi +if [ -d ~/.bin ]; then + PATH=~/.bin:$PATH +fi # Use Vim as editor. EDITOR=vim -- 2.44.2