From b6080a6d29309e1fa007bedc2442e65f04066e34 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 16 Aug 2019 14:52:11 +1200 Subject: Include ~/.bash_profile.d snippets if present --- bash/bash_profile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bash/bash_profile b/bash/bash_profile index 1f5a633a..2f3ba81f 100644 --- a/bash/bash_profile +++ b/bash/bash_profile @@ -10,6 +10,13 @@ if [ -n "$POSIXLY_CORRECT" ] ; then return fi +# Load any supplementary scripts in ~/.bash_profile.d; it need not exist +for bash in "$HOME"/.bash_profile.d/*.bash ; do + [ -e "$bash" ] || continue + . "$bash" +done +unset -v bash + # If ~/.bashrc exists, source that too; the tests for both interactivity and # minimum version numbers are in there if [ -f "$HOME"/.bashrc ] ; then -- cgit v1.2.3 From c4deb45c975c0fa18ffd14287506e6a1f945fa9d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 16 Aug 2019 14:55:00 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index e78dc862..6c1cc205 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v7.11.0 -Fri, 16 Aug 2019 02:51:58 +0000 +tejr dotfiles v7.12.0 +Fri, 16 Aug 2019 02:55:00 +0000 -- cgit v1.2.3