Merge pull request #97 from AnvaySingh/patch-1

fix: no suffix on value for --vram
This commit is contained in:
Michael Cade 2022-05-10 22:05:32 +01:00 committed by GitHub
commit 0e78845adc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,6 @@ Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |v| config.vm.provider :virtualbox do |v|
v.memory = 8096 v.memory = 8096
v.cpus = 4 v.cpus = 4
v.customize ["modifyvm", :id, "--vram", "128mb"] v.customize ["modifyvm", :id, "--vram", "128"]
end
end end
end