diff options
-rw-r--r-- | .bashrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -97,8 +97,11 @@ if [ -f /etc/bash_completion ]; then fi if [ "$TERM" != dumb ]; then - export TMPDIR="$HOME/tmp" + if [ -d "$HOME/tmp" ]; then + export TMPDIR="$HOME/tmp" + fi daemon emacs --daemon daemon sysfiles daemon maildirproc fi +[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* |