From c391d2d46bdd432caca806dfd9019e44c735afc1 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 9 Mar 2014 22:41:51 -0700 Subject: [PATCH] Don't splat the bundler groups --- bin/vagrant | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/vagrant b/bin/vagrant index 2bee1f64c..072732eb0 100755 --- a/bin/vagrant +++ b/bin/vagrant @@ -58,8 +58,7 @@ end # then also initialize the paths to the plugins. require "bundler" begin - groups = [:default, :plugins] - Bundler.setup(*groups) + Bundler.setup(:default, :plugins) rescue Bundler::VersionConflict => e $stderr.puts "Vagrant experienced a version conflict with some installed plugins!" $stderr.puts "If you recently upgraded Vagrant, the recommended way to fix this is"