You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bug was fixed in this PR which has caused errors for bash users
The files in ~.bashrc.d had been incorrectly sourced for all shells from /usr/share/defaults/etc/profile
That had caused errors in other shells.
Unfortunately, correcting this means that existing users no longer have ~.bashrc.d sourced by /usr/share/defaults/etc/profile.
New users created after this change will have the scripts sourced normally from the files in skel
Come up with a one-off fix for users who existed before that change
Workaround for existing users
Add this to ~/.bashrc
# User specific bash aliases and functionsif [ -d~/.bashrc.d ];thenforrcin~/.bashrc.d/*;doif [ -f"$rc" ];then."$rc"fidoneunset rc
fi
The text was updated successfully, but these errors were encountered:
A bug was fixed in this PR which has caused errors for bash users
The files in
~.bashrc.d
had been incorrectly sourced for all shells from/usr/share/defaults/etc/profile
That had caused errors in other shells.
Unfortunately, correcting this means that existing users no longer have
~.bashrc.d
sourced by/usr/share/defaults/etc/profile
.New users created after this change will have the scripts sourced normally from the files in
skel
Come up with a one-off fix for users who existed before that change
Workaround for existing users
Add this to
~/.bashrc
The text was updated successfully, but these errors were encountered: