diff options
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 |