Skip to content

Commit 48fd2d0

Browse files
Don't print a bunch of blank lines when setting up dependencies
1 parent d2af5d6 commit 48fd2d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bundler/spec/support/rubygems_ext.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ def install_gems(gemfile, path = nil)
150150
ENV["BUNDLE_PATH__SYSTEM"] = "true"
151151
end
152152

153-
puts `#{Gem.ruby} #{File.expand_path("support/bundle.rb", Path.spec_dir)} install --quiet`
154-
raise unless $?.success?
153+
output = `#{Gem.ruby} #{File.expand_path("support/bundle.rb", Path.spec_dir)} install --quiet`
154+
raise output unless $?.success?
155155
ensure
156156
if path
157157
ENV["BUNDLE_PATH"] = old_path

0 commit comments

Comments
 (0)