From 866ef5c3794764b089efdcfae1a753e294978663 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 20 Aug 2013 13:54:57 +1200 Subject: More conservative expansion for dotfile paths --- bash/bash_profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bash/bash_profile') diff --git a/bash/bash_profile b/bash/bash_profile index 3d50e437..c119ddba 100644 --- a/bash/bash_profile +++ b/bash/bash_profile @@ -1,10 +1,10 @@ # Source Bourne shell profile if it exists if [[ -r $HOME/.profile ]]; then - source "$HOME/.profile" + source "$HOME"/.profile fi # Source interactive Bash config if it exists if [[ -r $HOME/.bashrc ]]; then - source "$HOME/.bashrc" + source "$HOME"/.bashrc fi -- cgit v1.2.3