[Fix #335] Prevent rbenv from hashing gems at startup

This commit is contained in:
Jeff Sandberg 2012-12-08 13:06:19 -07:00 committed by Sorin Ionescu
parent 795495b864
commit 29647947fe
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ if [[ -s "$HOME/.rvm/scripts/rvm" ]]; then
# Load manually installed rbenv into the shell session.
elif [[ -s "$HOME/.rbenv/bin/rbenv" ]]; then
path=("$HOME/.rbenv/bin" $path)
eval "$(rbenv init - zsh)"
eval "$(rbenv init - --no-rehash zsh)"
# Load package manager installed rbenv into the shell session.
elif (( $+commands[rbenv] )); then
eval "$(rbenv init - zsh)"
eval "$(rbenv init - --no-rehash zsh)"
# Install local gems according to operating system conventions.
else