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:
parent
a91d4eef0c
commit
5ab730d721
1 changed files with 1 additions and 1 deletions
2
spec/support/Vagrantfile
vendored
2
spec/support/Vagrantfile
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue