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

Make is needed for the tests to run The tests don't run with with either as `npm test` uses the "shell" package which tries to execute shell commands in its parent shell. If the shell is fish..well, it doesn't work.
10 lines
182 B
Bash
10 lines
182 B
Bash
#!/bin/bash
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -y git fish make
|
|
|
|
# Switch to fish as a default shell
|
|
# sudo chsh -s `which fish` vagrant
|
|
|
|
# Install nvm
|
|
/vagrant/install.sh
|