core: Fix misleading wording in pre-rubygems [GH-3078]

This commit is contained in:
Mitchell Hashimoto 2014-03-07 10:44:00 -08:00
parent e279801e64
commit 914d177346
1 changed files with 4 additions and 3 deletions

View File

@ -6,9 +6,10 @@ if defined?(Bundler)
require "bundler/shared_helpers" require "bundler/shared_helpers"
if Bundler::SharedHelpers.in_bundle? if Bundler::SharedHelpers.in_bundle?
puts "Vagrant appears to be running in a Bundler environment. Your " puts "Vagrant appears to be running in a Bundler environment. Your "
puts "existing Gemfile will be used. Vagrant will not auto-load any plugins." puts "existing Gemfile will be used. Vagrant will not auto-load any plugins"
puts "You must load any plugins you want manually in a Vagrantfile. You can" puts "installed with `vagrant plugin`. Vagrant will autoload any plugins in"
puts "force Vagrant to take over with VAGRANT_FORCE_BUNDLER." puts "the 'plugins' group in your Gemfile. You can force Vagrant to take over"
puts "with VAGRANT_FORCE_BUNDLER."
puts puts
end end
end end