From 967331048ffc55b15c6630d9110106ce51b696b9 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Wed, 1 Apr 2020 17:05:23 +0200 Subject: [PATCH] Need more recent bundler for building --- Vagrantfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index e9cb93d..1f37f13 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -25,7 +25,12 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: <<-SHELL set -xe apt-get update - yes | apt-get install -y build-essential git ruby ruby-bundler ruby-dev - (cd /vagrant && sudo -Hu vagrant bundle install) + yes | apt-get install -y build-essential git ruby ruby-dev + ( + cd /vagrant + sudo gem update --system + sudo gem install bundler + sudo -Hu vagrant bundle install + ) SHELL end