Merge pull request #31 from focusaurus/patch-1

Avoid warning message if ~/.scmbrc does not exist
This commit is contained in:
Nathan Broadbent
2012-05-07 16:50:44 -07:00

View File

@@ -5,7 +5,7 @@
export scmbDir="$(dirname ${BASH_SOURCE:-$0})"
# Load config
. "$HOME/.scmbrc"
[ -s "$HOME/.scmbrc" ] && . "$HOME/.scmbrc"
# Shared functions
. "$scmbDir/lib/scm_breeze.sh"