Add support for .bashrc.local

This commit is contained in:
c47 2024-01-21 12:58:28 +01:00
parent 4c060aecdd
commit 5fb51a2acf

View file

@ -120,4 +120,9 @@ umask 0077
if [[ -f ${HOME}/.bash_aliases.local ]]; then
source ${HOME}/.bash_aliases.local
fi
if [[ -f ${HOME}/.bashrc.local ]]; then
source ${HOME}/.bashrc.local
fi
export PATH=${HOME}/.local/bin:${PATH}