From e69e489d3e7aeed3b7394002084612a71bb61580 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Mon, 9 Apr 2018 21:13:32 +0200 Subject: [PATCH] Added some dirs to path --- profile.d/path | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profile.d/path b/profile.d/path index 43fe3e8..2613629 100644 --- a/profile.d/path +++ b/profile.d/path @@ -1,5 +1,8 @@ #!/bin/bash # Customize PATH +if [ -d $HOME/.bin ] ; then export PATH=$PATH:$HOME/.bin ; fi +if [ -d $HOME/.local/bin ] ; then export PATH=$PATH:$HOME/.local/bin ; fi + if [ -d $HOME/bin ] ; then export PATH=$PATH:$HOME/bin ; fi if [ -d $HOME/scripts ] ; then export PATH=$PATH:$HOME/scripts ; fi