From 3504b1dbcbcc7dcf941d8c2bf086e74ccc168022 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 19 Mar 2010 22:29:59 -0700 Subject: [PATCH] Boxes modified for use with environment --- lib/vagrant/box.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/box.rb b/lib/vagrant/box.rb index 11edf495e..67e09a0d5 100644 --- a/lib/vagrant/box.rb +++ b/lib/vagrant/box.rb @@ -105,7 +105,7 @@ module Vagrant # @param [String] name Name of the box whose directory you're interested in. # @return [String] Full path to the box directory. def directory(env, name) - File.join(Env.boxes_path, name) + File.join(env.boxes_path, name) end end