From 69aa46d8012b4f464d16f1d4a63f0acf43c065c4 Mon Sep 17 00:00:00 2001 From: Louis Lacoste Date: Sun, 12 Feb 2023 16:24:15 +0100 Subject: [PATCH] Added multiple path to the PATH env var --- .bash_profile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.bash_profile b/.bash_profile index 37f2848..201c55f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -14,3 +14,14 @@ eval "$(register-python-argcomplete conda)" bind 'set show-all-if-ambiguous on' #bind 'TAB:menu-complete' bind 'set colored-completion-prefix on' + +# Add paths +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ] ; then + PATH="$HOME/bin:$PATH" +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/.local/bin" ] ; then + PATH="$HOME/.local/bin:$PATH" +fi