From 7036a9b36396ae49cf8ba0f8ad5fe139a65433c1 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 22 May 2012 23:37:58 -0400 Subject: add $HOME/.local/bin to PATH if it exists --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.profile b/.profile index b07cfa0..d2a1e6c 100644 --- a/.profile +++ b/.profile @@ -9,7 +9,7 @@ umask 022 ## Paths ############################################################# # Unix -bins=`echo $HOME/bin $HOME/.prefix/bin $HOME/.gem/ruby/*/bin` +bins=`echo $HOME/bin $HOME/.local/bin $HOME/.prefix/bin $HOME/.gem/ruby/*/bin` for dir in $bins; do if [ -d "$dir" ]; then export PATH="$dir:$PATH" -- cgit v1.2.3