summaryrefslogtreecommitdiffstats
path: root/bashrc
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2009-02-26 02:52:13 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2009-02-26 02:52:13 +0100
commit917bcbb22e81f453e019a31c52734e172fe5b264 (patch)
treea7cdd2b3d27cc04479f36065136546ba93f3136e /bashrc
parentadd5b2b16fd3ff59c2d050a4036db3216ac32365 (diff)
downloaddotfiles-917bcbb22e81f453e019a31c52734e172fe5b264.tar.gz
dotfiles-917bcbb22e81f453e019a31c52734e172fe5b264.tar.xz
dotfiles-917bcbb22e81f453e019a31c52734e172fe5b264.zip
removed message if no node scripts are available
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc/main.sh2
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