Peepcode theme: Don't try to use RVM if not installed

This commit is contained in:
HaraldNordgren 2016-04-03 03:52:37 +02:00
commit c7adfe9c31

View file

@ -41,4 +41,10 @@ PROMPT='
%~
${smiley} %{$reset_color%}'
RPROMPT='%{$fg[white]%} $(~/.rvm/bin/rvm-prompt)$(git_prompt)%{$reset_color%}'
if [[ -d ~/.rvm ]]; then
rvm_prompt='$(~/.rvm/bin/rvm-prompt)'
else
rvm_prompt=''
fi
RPROMPT='%{$fg[white]%} $rvm_prompt$(git_prompt)%{$reset_color%}'