From 83b8fcaa2b58c2f14bce2d413d673c271feed27f Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Mon, 28 Sep 2015 14:13:39 +0200 Subject: [PATCH] Vagrant: Fix NodeJS installation Fixes flarum/core#547. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 1ac845d..cb40409 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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)