Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes --without-node-build homebrew option #10

Merged
merged 1 commit into from
Aug 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/nodenv-installer
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [ -n "$nodenv" ]; then
brew update >/dev/null
if [ "$(./nodenv --version)" < "1.0.0" ] && brew list nodenv | grep -q nodenv/HEAD; then
brew uninstall nodenv
brew install nodenv --without-node-build
brew install nodenv
else
brew upgrade nodenv
fi
Expand All @@ -56,7 +56,7 @@ else
if [ -n "$homebrew" ]; then
echo "Installing nodenv with Homebrew..."
brew update
brew install nodenv --without-node-build
brew install nodenv
nodenv="$(brew --prefix)/bin/nodenv"
else
echo "Installing nodenv with git..."
Expand Down