diff --git a/development/Vagrantfile b/development/Vagrantfile index 63683d8..122ac0c 100644 --- a/development/Vagrantfile +++ b/development/Vagrantfile @@ -123,7 +123,7 @@ Vagrant.configure("2") do |config| # Disable NFS arch.cache.synced_folder_opts = { } - arch.vm.provision :shell, inline: 'pacman -Syu --noconfirm libffi git && gem install bundler' + arch.vm.provision :shell, inline: 'pacman -Syu --noconfirm libffi git ruby && gem install bundler' end config.vm.define :opensuse do |suse| @@ -132,6 +132,6 @@ Vagrant.configure("2") do |config| # Disable NFS suse.cache.synced_folder_opts = { } - suse.vm.provision :shell, inline: 'time zypper install -y git && gem install bundler' + suse.vm.provision :shell, inline: 'time zypper install -y git' end end