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

Bump Node #13

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions provision.user.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
[ -d ~/.nvm ] || git clone -b v0.33.2 https://github.com/creationix/nvm.git ~/.nvm
[ -d /home/vagrant/hayt ] || git clone https://github.com/desert-planet/hayt /home/vagrant/hayt
[ -d ~/.nvm ] || curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
[ -d /home/vagrant/hayt/.git ] || git clone https://github.com/desert-planet/hayt /home/vagrant/hayt
[ -d ~/hayt ] || ln -s /home/vagrant/hayt ~/hayt

{ grep nvm ~/.profile; } || {
Expand All @@ -11,7 +11,7 @@ set -e

. "$HOME/.nvm/nvm.sh"
# TODO(sshirokov): Read this from package.json
nvm install 0.10
nvm install 10
npm install -g avn avn-nvm avn-n

{ grep avn ~/.profile; } || {
Expand Down