From 59ae16998d5841a77bcdcf5b2ffb5d1929df4d41 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 19 Mar 2010 15:53:24 -0700 Subject: [PATCH] Set the environment on the loaded box --- lib/vagrant/box.rb | 3 +++ lib/vagrant/environment.rb | 1 + test/vagrant/environment_test.rb | 7 +++++++ 3 files changed, 11 insertions(+) diff --git a/lib/vagrant/box.rb b/lib/vagrant/box.rb index bbc63b96d..f50c0f825 100644 --- a/lib/vagrant/box.rb +++ b/lib/vagrant/box.rb @@ -51,6 +51,9 @@ module Vagrant # only be used internally. attr_accessor :temp_path + # The environment which this box belongs to + attr_accessor :env + class <