for some reason sometimes I do not have home bin folder added automatically
no problem, fixed
This commit is contained in:
parent
f5fb8e5dc3
commit
597354356b
@ -1,4 +1,4 @@
|
||||
for source in colored_commands convenience_aliases git_functions histcontrol ls_aliases safety_aliases terminal_colors terminal_fancyfying; do
|
||||
for source in colored_commands convenience_aliases git_functions histcontrol home_bin_folder ls_aliases safety_aliases terminal_colors terminal_fancyfying; do
|
||||
if [ -f ~/.bashrc_overrides/$source ]; then
|
||||
. ~/.bashrc_overrides/$source
|
||||
fi
|
||||
|
4
bashrc_overrides/home_bin_folder
Normal file
4
bashrc_overrides/home_bin_folder
Normal file
@ -0,0 +1,4 @@
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
Loading…
Reference in New Issue
Block a user