Explicitly tell rbenv to use zsh

According to @graywh's comment on:
https://github.com/sstephenson/rbenv/issues/185
This commit is contained in:
Thomas Dippel 2012-06-16 12:41:44 +02:00
parent e8d582aba9
commit 823cc9180c

View File

@ -4,7 +4,7 @@ for rbenvdir in "$HOME/.rbenv" "/usr/local/rbenv" "/opt/rbenv" ; do
FOUND_RBENV=1
export RBENV_ROOT=$rbenvdir
export PATH=${rbenvdir}/bin:$PATH
eval "$(rbenv init -)"
eval "$(rbenv init - zsh)"
alias rubies="rbenv versions"
alias gemsets="rbenv gemset list"