only call rbenv if it exists
This commit is contained in:
parent
17cb676d5f
commit
519452f71a
1 changed files with 3 additions and 1 deletions
|
|
@ -74,7 +74,9 @@ else
|
||||||
export VISUAL=vi
|
export VISUAL=vi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
eval "$(rbenv init -)"
|
if command_exists rbenv; then
|
||||||
|
eval "$(rbenv init -)"
|
||||||
|
fi
|
||||||
|
|
||||||
# 2. Limits
|
# 2. Limits
|
||||||
# =========
|
# =========
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue