From 78a72648b498752f2c41178fcf5d0b3c43397f75 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Tue, 1 Dec 2015 01:49:13 +0100 Subject: [PATCH] Update to Vaprobash 1.4.2 This lets me get rid of my patched version --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 22728e0..c88592e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,7 +4,7 @@ # Config Github Settings github_username = "fideloper" github_repo = "Vaprobash" -github_branch = "1.4.1" +github_branch = "1.4.2" github_url = "https://raw.githubusercontent.com/#{github_username}/#{github_repo}/#{github_branch}" # Server Configuration @@ -282,7 +282,7 @@ Vagrant.configure("2") do |config| ########## # Install Nodejs - 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) + config.vm.provision "shell", path: "#{github_url}/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)