From 5ab730d7211393d525ffa03aa71ef2c6e0c703ea Mon Sep 17 00:00:00 2001 From: Bruno Sutic Date: Fri, 25 Apr 2014 22:53:03 +0200 Subject: [PATCH] Use a more idiomatic `apt-get install` method --- spec/support/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/support/Vagrantfile b/spec/support/Vagrantfile index 831f206e..1db1b8e7 100644 --- a/spec/support/Vagrantfile +++ b/spec/support/Vagrantfile @@ -6,7 +6,7 @@ Vagrant::Config.run do |config| config.vm.box = 'precise64' config.vm.box_url = 'http://files.vagrantup.com/precise64.box' config.vm.forward_port 22, "222#{i}".to_i - config.vm.provision :shell, inline: 'yes | sudo apt-get install git-core' + config.vm.provision :shell, inline: 'sudo apt-get -y install git-core' end end