From 544059e6c36a2bb9fecc686626af1288e7f198a1 Mon Sep 17 00:00:00 2001 From: Darren Austin Date: Sun, 7 May 2017 15:09:51 +0100 Subject: [PATCH] Add .local/bin to PATH if exists --- .bash_profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index c1614b3..7e442b5 100644 --- a/.bash_profile +++ b/.bash_profile @@ -14,8 +14,9 @@ export VISUAL="$EDITOR" [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" # Add bin directories to PATH. -[ -d ~/files/bin ] && export PATH="~/files/bin:$PATH" +[ -d ~/.local/bin ] && export PATH="~/.local/bin:$PATH" [ -d ~/bin ] && export PATH="~/bin:$PATH" +[ -d ~/files/bin ] && export PATH="~/files/bin:$PATH" # Platform specific set up. _PLATFORM="$(uname -s)"