Use .bashrc.local instead of .bashrc.HOSTNAME

This commit is contained in:
Anthony Rose 2021-03-02 11:10:47 +00:00
parent 2d9983b939
commit 22848a1dfb

View file

@ -260,7 +260,7 @@ then
ssh-add "$HOME/.ssh/id_ed25519" ssh-add "$HOME/.ssh/id_ed25519"
fi fi
if [ -r "$HOME/.bashrc.$(hostname -s)" ] if [ -r "$HOME/.bashrc.local" ]
then then
. "$HOME/.bashrc.$(hostname -s)" . "$HOME/.bashrc.local"
fi fi