From: Simon Ruderich Date: Thu, 11 Mar 2010 00:26:54 +0000 (+0100) Subject: shell/env: Also add ~/.bin to PATH if it exists. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=e111c254973cbfc4e2cb3d6a059bf52f6f8cf571;p=config%2Fdotfiles.git shell/env: Also add ~/.bin to PATH if it exists. --- 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