summaryrefslogtreecommitdiff
path: root/dotrc/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'dotrc/.bashrc')
-rw-r--r--dotrc/.bashrc6
1 files changed, 5 insertions, 1 deletions
diff --git a/dotrc/.bashrc b/dotrc/.bashrc
index 20eeedd..858116c 100644
--- a/dotrc/.bashrc
+++ b/dotrc/.bashrc
@@ -2,8 +2,12 @@ if [ "$PS1" != "" ] ; then
PS1="`hostname -s`$ "
fi
-test -s $HOME/.bash_aliases && . ~/.bash_aliases
+test -s $HOME/.bash_aliases && . $HOME/.bash_aliases
if [ ! "$(echo $PATH | fgrep $HOME/bin)" ] ; then
export PATH=$HOME/bin:$PATH
fi
+
+if [ ! "$(echo $PATH | fgrep $HOME/.local/bin)" ] ; then
+ export PATH=$HOME/.local/bin:$PATH
+fi