Better shared variable name.

This commit is contained in:
Nathan Broadbent
2011-10-18 00:36:36 +08:00
parent 8c95162bc6
commit acd8e42ee9
5 changed files with 20 additions and 19 deletions

View File

@@ -2,7 +2,7 @@
# scm_breeze.sh must be sourced, and not executed in a sub-shell.
# e.g "source ~/.scm_breeze/scm_breeze.sh"
# ------------------------------------------------------------
export scmbreezeDir="$(dirname ${BASH_SOURCE:-$0})"
export scmbDir="$(dirname ${BASH_SOURCE:-$0})"
# Git
@@ -11,16 +11,16 @@ if [[ -s "$HOME/.git.scmbrc" ]]; then
# Load config
. "$HOME/.git.scmbrc"
. "$scmbreezeDir/lib/_shared.sh"
. "$scmbreezeDir/lib/git/aliases_and_bindings.sh"
. "$scmbreezeDir/lib/git/status_shortcuts.sh"
. "$scmbreezeDir/lib/git/repo_management.sh"
. "$scmbreezeDir/lib/git/tools.sh"
. "$scmbDir/lib/_shared.sh"
. "$scmbDir/lib/git/aliases_and_bindings.sh"
. "$scmbDir/lib/git/status_shortcuts.sh"
. "$scmbDir/lib/git/repo_management.sh"
. "$scmbDir/lib/git/tools.sh"
if ! type ruby > /dev/null 2>&1; then
# If Ruby is not installed, fall back to the
# slower bash/zsh implementation of 'git_status_shortcuts'
. "$scmbreezeDir/lib/git/fallback/status_shortcuts_shell.sh"
. "$scmbDir/lib/git/fallback/status_shortcuts_shell.sh"
fi
fi