From 94708f6b50ed7bc904e2e28a08cf628b568305bc Mon Sep 17 00:00:00 2001 From: Griffin Yourick Date: Mon, 10 Apr 2017 14:40:43 -0400 Subject: [PATCH] Fix path in node module --- modules/node/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/node/init.zsh b/modules/node/init.zsh index 643c752..46ab441 100644 --- a/modules/node/init.zsh +++ b/modules/node/init.zsh @@ -16,7 +16,7 @@ elif (( $+commands[brew] )) && [[ -d "$(brew --prefix nvm 2>/dev/null)" ]]; then # Load manually installed nodenv into the shell session. elif [[ -s "$HOME/.nodenv/bin/nodenv" ]]; then - path=("$HOME/.rbenv/bin $path") + path=("$HOME/.nodenv/bin $path") eval "$(nodenv init - --no-rehash zsh)" # Load package manager installed nodenv into the shell session.