From 5b910c186c9b921894c44610c4c6b9eb74282160 Mon Sep 17 00:00:00 2001 From: Timur Alperovich Date: Tue, 24 Nov 2015 12:18:50 -0800 Subject: [PATCH] Fix the resolution of SafeEnv. Recent change broke bundler.rb due to incorrect scope resolution (the error is: uninitialized constant Vagrant::Bundler::SafeEnv (NameError). --- lib/vagrant/bundler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/bundler.rb b/lib/vagrant/bundler.rb index 7382cbc59..fe9699ef4 100644 --- a/lib/vagrant/bundler.rb +++ b/lib/vagrant/bundler.rb @@ -72,7 +72,7 @@ module Vagrant # we add all our plugin dependencies. @gemfile = build_gemfile(plugins) - SafeEnv.change_env do |env| + Util::SafeEnv.change_env do |env| # Set the environmental variables for Bundler env["BUNDLE_APP_CONFIG"] = @appconfigpath env["BUNDLE_CONFIG"] = @configfile.path