summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-05-22 23:37:58 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-05-22 23:37:58 -0400
commit7036a9b36396ae49cf8ba0f8ad5fe139a65433c1 (patch)
tree3704a90d5e27507ad4f767d1a06cd13aa8c31600
parent58f1e1467c2b68a7d734c457aaa815377226f01c (diff)
add $HOME/.local/bin to PATH if it exists
-rw-r--r--.profile2
1 files changed, 1 insertions, 1 deletions
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"