.zshrc: Update jenv condition
This always spams "no jenv in PATH" if jenv can't be found, which is really annoying.
This commit is contained in:
2
.zshrc
2
.zshrc
@ -83,7 +83,7 @@ if [[ -d ~/.pyenv ]]; then
|
||||
fi
|
||||
|
||||
# Initialize jenv if it exists
|
||||
if which jenv > /dev/null; then
|
||||
if [[ -d ~/.jenv ]]; then
|
||||
export JENV_ROOT=~/.jenv
|
||||
eval "$(jenv init -)"
|
||||
fi
|
||||
|
Reference in New Issue
Block a user