From bfea62cefcd0b9032f95a7638aeaae7b2bb94ebc Mon Sep 17 00:00:00 2001 From: Mika Suomalainen Date: Sun, 14 Aug 2011 18:59:41 +0300 Subject: [PATCH] Added sourcing to install.sh --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 6ccd2795..33508b0e 100755 --- a/install.sh +++ b/install.sh @@ -16,6 +16,11 @@ echo "bash_profile installed." echo "Installing bashrc." cat bashrc > ~/.bashrc echo "bashrc installed." +echo "Sourcing bash_aliases..." +source ~/.bash_aliases echo "Sourcing bashrc..." source ~/.bashrc +# echo "Sourcing bash_profile..." +# source bash_profile +## The above is not required, because my bash_profile only sources bashrc. echo "Installation has completed."