From 38832c70d7bf21ec67ad16ddba8a44541962cfaa Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Tue, 17 Jan 2012 12:27:42 +0800 Subject: [PATCH] Symlink to ~/.scm_breeze if not installing to that path --- install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index ad6459a..3134270 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,12 @@ #!/bin/sh #locate the dir where this script is stored export scmbDir="$( cd -P "$( dirname "$0" )" && pwd )" + +# Symlink to ~/.scm_breeze if installing from another path +if [ "$scmbDir" != "$HOME/.scm_breeze" ]; then + ln -fs "$scmbDir" "$HOME/.scm_breeze" +fi + # This loads SCM Breeze into the shell session. exec_string="[ -s \"$scmbDir/scm_breeze.sh\" ] && . \"$scmbDir/scm_breeze.sh\"" @@ -19,4 +25,3 @@ _create_or_patch_scmbrc echo "== Run 'source ~/.bashrc' or 'source ~/.zshrc' to load SCM Breeze into your current shell." -