add $HOME/.local/bin to PATH

This commit is contained in:
Yax 2021-06-05 10:45:46 +02:00
parent 5fd339f116
commit ec87ee4824

View file

@ -117,6 +117,10 @@ fi
# Source all .bashrc files
# -------------------------------------------------------------
if [ -d "$HOME/.local/bin" ]; then
export PATH=$HOME/.local/bin:$PATH
fi
if [ -d "$HOME/.bashrc.d/" ]; then
for file in ~/.bashrc.d/*.bashrc; do
. "$file"