From 43625fca968211ce8f2270b77388c693d282065c Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Tue, 25 Feb 2014 23:54:05 -0300 Subject: [PATCH] Minor dev Vagrantfile tweaks --- development/Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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