1
1
Fork 0
mirror of https://github.com/tonydamage/nux-env.git synced 2025-12-11 13:24:28 +01:00

Added support for user specific bin directory.

Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
This commit is contained in:
Tony Tkáčik 2014-02-19 14:30:49 +01:00
parent 26ebf5bf04
commit b5fc3d34ee

4
bashrc
View file

@ -111,6 +111,10 @@ if [ -f ~/.bash_local_variables ]; then
. ~/.bash_local_variables . ~/.bash_local_variables
fi fi
if [ -d ~/bin ]; then
PATH="$PATH:~/bin"
fi
# enable programmable completion features (you don't need to enable # enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc). # sources /etc/bash.bashrc).