From b989d9f7f42034ee72f5458d04df1e224e6a3d50 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 16 Aug 2015 23:42:17 +0200 Subject: [PATCH] shell/env: prefer ~/bin over ~/.bin --- shell/env | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.43.2