The bash update this sync overwrites /usr/share/defaults/etc/profile
. This removes the code that facilitates the use of ~/.bashrc.d/
—added by Ermo I think—for easier management of ~/.bashrc
. So the files here are not sourced on opening a terminal. Easy to fix by re-adding:
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
unset rc
fi
to /etc/profile
, but probably an unintended outcome of the update.
Apart from that glitch another smooth update on both PC and laptop, thanks.