[Fix #335] Prevent rbenv from hashing gems at startup
This commit is contained in:
parent
795495b864
commit
29647947fe
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue