1
0
mirror of https://github.com/TeamNewPipe/website synced 2025-10-05 16:13:13 +02:00

Need more recent bundler for building

This commit is contained in:
TheAssassin
2020-04-01 17:05:23 +02:00
parent 5df2858a1d
commit 967331048f

9
Vagrantfile vendored
View File

@@ -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