Merge pull request #5799 from jessestuart/jesse/remove_redundant_vagrantfile_block

[vagrant] Remove redundant configuration block in Vagrantfile.
This commit is contained in:
Matthew Hooker 2018-01-23 13:12:53 -08:00 committed by GitHub
commit 83bfeb200d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

5
Vagrantfile vendored
View File

@ -69,11 +69,6 @@ def configureProviders(vmCfg, cpus: "2", memory: "2048")
end
end
vmCfg.vm.provider "virtualbox" do |v|
v.memory = memory
v.cpus = cpus
end
return vmCfg
end