Changed bundle setup error message.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8912 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-02-19 20:15:30 +00:00
parent 3e3d7c8d4f
commit 21617889e8
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,6 @@ begin
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)
Bundler.setup
rescue Bundler::GemNotFound
$stderr.puts "Some gems may need to be installed or updated. Please run `bundle install`."
$stderr.puts "Some gems may need to be installed or updated.\nPlease run `bundle install --without development test`."
exit 1
end