From 21c2f1b4ff709289d8175a13f8ddeb542d6873ec Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Wed, 19 Oct 2011 18:33:32 +0800 Subject: [PATCH] Tell user to load SCM Breeze manually. --- install.sh | 4 +--- lib/git/aliases_and_bindings.sh | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 606aa40..c7cfc6c 100755 --- a/install.sh +++ b/install.sh @@ -14,8 +14,6 @@ done # Create '~/.*.scmbrc' files from example files _create_or_patch_scmbrc -# Load SCM Breeze in current shell -. "$HOME/.scm_breeze/scm_breeze.sh" -echo "== SCM Breeze loaded into current shell with default settings." +echo "== Run 'source ~/.bashrc' (or 'source ~/.zshrc') to load SCM Breeze into your current shell." diff --git a/lib/git/aliases_and_bindings.sh b/lib/git/aliases_and_bindings.sh index 1182708..c1ffb6f 100644 --- a/lib/git/aliases_and_bindings.sh +++ b/lib/git/aliases_and_bindings.sh @@ -104,7 +104,7 @@ _bind(){ if [[ $shell == "zsh" ]]; then # zsh bindkey -s "$1" "$2" else # bash - bind "\"$1\": \"$2\"" 2>&1 > /dev/null + bind "\"$1\": \"$2\"" fi }