1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Use a more idiomatic apt-get install method

This commit is contained in:
Bruno Sutic 2014-04-25 22:53:03 +02:00 committed by Lee Hambley
parent a91d4eef0c
commit 5ab730d721

View file

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