From df27a9abf8ef698ca5b70f207de36889235262c7 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Mon, 21 Jan 2019 13:53:10 +0000 Subject: [PATCH] Fix the bashrc inclusions --- .bashrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index b7b3446..f4f341c 100755 --- a/.bashrc +++ b/.bashrc @@ -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 #--------------------------------------------------------------------------------