From 450787682f31219f236fd09f63d91bf9ec87ca83 Mon Sep 17 00:00:00 2001 From: William Ting Date: Fri, 13 May 2011 20:32:41 -1000 Subject: [PATCH] minor edit, reposition OS X output before the done message --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index b5b1057..93ea0e0 100755 --- a/install.sh +++ b/install.sh @@ -130,10 +130,6 @@ else fi -echo "Done!" -echo -echo "You need to source your ~/.bashrc (source ~/.bashrc) before you can start using autojump." - # Since OSX uses .bash_profile, we need to make sure that .bashrc is properly sourced. # Makes the assumption that if they have a line: source ~/.bashrc or . ~/.bashrc, that # .bashrc has been properly sourced and you don't need to add it. @@ -143,3 +139,7 @@ if [ `uname` == "Darwin" ] && [ `grep -c "^[[:space:]]*\(source\|\.\).*\.bashrc[ echo -e "\n# Get the aliases and functions" >> ~/.bash_profile echo -e "if [ -f ~/.bashrc ]; then\n . ~/.bashrc\nfi" >> ~/.bash_profile fi + +echo "Done!" +echo +echo "You need to source your ~/.bashrc (source ~/.bashrc) before you can start using autojump."