diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-02-26 02:52:13 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-02-26 02:52:13 +0100 |
commit | 917bcbb22e81f453e019a31c52734e172fe5b264 (patch) | |
tree | a7cdd2b3d27cc04479f36065136546ba93f3136e | |
parent | add5b2b16fd3ff59c2d050a4036db3216ac32365 (diff) | |
download | dotfiles-917bcbb22e81f453e019a31c52734e172fe5b264.tar.gz dotfiles-917bcbb22e81f453e019a31c52734e172fe5b264.tar.xz dotfiles-917bcbb22e81f453e019a31c52734e172fe5b264.zip |
removed message if no node scripts are available
Diffstat (limited to '')
-rw-r--r-- | bashrc/main.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc/main.sh b/bashrc/main.sh index 7199867..aa1c10c 100644 --- a/bashrc/main.sh +++ b/bashrc/main.sh @@ -59,7 +59,7 @@ _load() { fi if [[ -r ${base}/${path} || ($1 == "node" && $2 == "*") ]]; then - source ${base}/${path} + source ${base}/${path} 2>&1 > /dev/null elif [[ ${pedantic} -eq 1 ]]; then echo "error: cannot find necessary startup file: ${base}/${path}" fi |