aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-06-10 11:09:58 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-06-10 11:09:58 +1200
commitc14a2344f4044898807f719f54e95bf27fca22f6 (patch)
tree629d59cd4ffda21067cc903f9e0cc4079b8e415b /bash/bash_profile
parentRearrange newlines (diff)
downloaddotfiles-c14a2344f4044898807f719f54e95bf27fca22f6.tar.gz
dotfiles-c14a2344f4044898807f719f54e95bf27fca22f6.zip
Newline before bash login output
Diffstat (limited to 'bash/bash_profile')
-rw-r--r--bash/bash_profile3
1 files changed, 2 insertions, 1 deletions
diff --git a/bash/bash_profile b/bash/bash_profile
index 05b15693..40f41c3d 100644
--- a/bash/bash_profile
+++ b/bash/bash_profile
@@ -11,8 +11,9 @@ elif ((10#${BASH_VERSINFO[0]%%[![:digit:]]*} == 2)) && \
return
fi
-# Load any supplementary scripts
+# Load any supplementary scripts, print a newline first
if [[ -d $HOME/.bash_profile.d ]] ; then
+ printf '\n'
for bash_profile in "$HOME"/.bash_profile.d/*.bash ; do
if [[ -e $bash_profile ]] ; then
source "$bash_profile"