From 87d00becf7686c7d50b1858c40a636e691bc20f1 Mon Sep 17 00:00:00 2001 From: Erin Date: Wed, 19 Jul 2023 23:12:12 -0400 Subject: [PATCH] zsh: fix rbenv detection --- zsh/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 4c3f95d..01d38ee 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -27,4 +27,4 @@ if [ -d "$HOME/.1password-ssh-utils/bin" ]; then fi # User program: add rbenv -[ -s "~/.rbenv/bin/rbenv" ] && eval "$(~/.rbenv/bin/rbenv init - zsh)" +[ -d "$HOME/.rbenv/bin" ] && eval "$(~/.rbenv/bin/rbenv init - zsh)"