nvm/provision.sh
LoveIsGrief 50169c11eb Introduce vagrant for testing
[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
2014-11-15 22:22:27 +01:00

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