From 169a829cd8940a9dde1c5883c05e742ab69da2b9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 1 May 2014 10:06:03 -0700 Subject: [PATCH] core: dup the provider options so we can't overwrite them --- lib/vagrant/vagrantfile.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/vagrantfile.rb b/lib/vagrant/vagrantfile.rb index da85d2360..b6b2c15ec 100644 --- a/lib/vagrant/vagrantfile.rb +++ b/lib/vagrant/vagrantfile.rb @@ -192,7 +192,7 @@ module Vagrant return { box: box, provider_cls: provider_cls, - provider_options: provider_options, + provider_options: provider_options.dup, config: config, config_warnings: config_warnings, config_errors: config_errors,