Fix the bashrc inclusions

This commit is contained in:
Scott Wallace 2019-01-21 13:53:10 +00:00
parent 19462d9aa7
commit df27a9abf8

View file

@ -93,5 +93,7 @@ export GIT_SSH_COMMAND="$(which ssh) -o RemoteCommand=none"
#--------------------------------------------------------------------------------
# Include deployed bash config
#--------------------------------------------------------------------------------
source ~/.bashrc.d/* 2>/dev/null
for include in ~/.bashrc.d/*; do
source ${include}
done
#--------------------------------------------------------------------------------