We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2af5d6 commit 48fd2d0Copy full SHA for 48fd2d0
bundler/spec/support/rubygems_ext.rb
@@ -150,8 +150,8 @@ def install_gems(gemfile, path = nil)
150
ENV["BUNDLE_PATH__SYSTEM"] = "true"
151
end
152
153
- puts `#{Gem.ruby} #{File.expand_path("support/bundle.rb", Path.spec_dir)} install --quiet`
154
- raise unless $?.success?
+ output = `#{Gem.ruby} #{File.expand_path("support/bundle.rb", Path.spec_dir)} install --quiet`
+ raise output unless $?.success?
155
ensure
156
if path
157
ENV["BUNDLE_PATH"] = old_path
0 commit comments