From: Simon Ruderich Date: Sun, 16 Aug 2015 21:42:17 +0000 (+0200) Subject: shell/env: prefer ~/bin over ~/.bin X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=b989d9f7f42034ee72f5458d04df1e224e6a3d50 shell/env: prefer ~/bin over ~/.bin --- diff --git a/shell/env b/shell/env index ff5e634..bd529ba 100644 --- a/shell/env +++ b/shell/env @@ -43,16 +43,16 @@ unset LC_TIME # variables like $LANG or $LC_ALL. unset LANGUAGE -# Add ~/bin and ~/.bin and ~/.shell/bin to PATH if available. +# Add ~/bin, ~/.bin and ~/.shell/bin to PATH if available. if test -d "$HOME/.shell/bin"; then PATH="$HOME/.shell/bin:$PATH" fi -if test -d "$HOME/bin"; then - PATH="$HOME/bin:$PATH" -fi if test -d "$HOME/.bin"; then PATH="$HOME/.bin:$PATH" fi +if test -d "$HOME/bin"; then + PATH="$HOME/bin:$PATH" +fi # Use Vim as editor. EDITOR=vim