Fix sourcing of local bash configuration

This commit is contained in:
Fernando Schauenburg 2019-11-08 10:03:22 +01:00
parent 907eb892de
commit f178b0c3cf

View file

@ -371,8 +371,8 @@ if [ -d /usr/local/etc/bash_completion.d ]; then
fi fi
# Source a local bashrc if available # Source a local bashrc if available
if [ -f "$HOME/.bashrc.local" ]; then if [ -f "$XDG_CONFIG_HOME/bash/profile.local" ]; then
# shellcheck disable=SC1090 # shellcheck disable=SC1090
source "$HOME/.bashrc.local" source "$XDG_CONFIG_HOME/bash/profile.local"
fi fi