Fix sourcing of local bash configuration
This commit is contained in:
parent
907eb892de
commit
f178b0c3cf
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue