Vagrant: Fix NodeJS installation

Fixes flarum/core#547.
pull/20/merge
Franz Liedke 2015-09-28 14:13:39 +02:00
parent 9f15204dff
commit 83b8fcaa2b
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -282,7 +282,7 @@ Vagrant.configure("2") do |config|
##########
# Install Nodejs
config.vm.provision "shell", path: "https://raw.githubusercontent.com/fideloper/Vaprobash/master/scripts/nodejs.sh", privileged: false, args: nodejs_packages.unshift(nodejs_version, github_url)
config.vm.provision "shell", path: "https://raw.githubusercontent.com/franzliedke/Vaprobash/patch-3/scripts/nodejs.sh", privileged: false, args: nodejs_packages.unshift(nodejs_version, github_url)
# Install Ruby Version Manager (RVM)
# config.vm.provision "shell", path: "#{github_url}/scripts/rvm.sh", privileged: false, args: ruby_gems.unshift(ruby_version)