mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-11 22:51:51 +00:00

When vagrant is provisioned it will choose an automatic method from now (which means git or script with the newest version of nvm from the web)
10 lines
175 B
Bash
10 lines
175 B
Bash
#!/bin/bash
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -y git fish
|
|
|
|
# Switch to fish as a default shell
|
|
sudo chsh -s `which fish` vagrant
|
|
|
|
# Install nvm
|
|
/vagrant/install.sh
|