mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-12 15:11:50 +00:00

[Vagrant](https://www.vagrantup.com/) allows us to test all changes in a virtual machine. We can "vagrant up" into a clean environment and "vagrant destroy" whenever
11 lines
194 B
Bash
11 lines
194 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
|
|
export METHOD=copy
|
|
/vagrant/install.sh
|