summaryrefslogtreecommitdiff
path: root/lib/bundler
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2021-12-19 15:31:53 +0100
committergit <svn-admin@ruby-lang.org>2021-12-20 06:49:49 +0900
commit72db2e00d4edb7a0e316a5979316595a67069d97 (patch)
tree065445bd863a05ba1e4594523508e712735f0bb3 /lib/bundler
parenta0f10a973fb94a0ee73da7cab792128cdf601783 (diff)
[rubygems/rubygems] Error tracing should be printed to stderr
https://github.com/rubygems/rubygems/commit/23178f7d7b
Diffstat (limited to 'lib/bundler')
-rw-r--r--lib/bundler/ui/shell.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/ui/shell.rb b/lib/bundler/ui/shell.rb
index 17777af4ac..384752a340 100644
--- a/lib/bundler/ui/shell.rb
+++ b/lib/bundler/ui/shell.rb
@@ -81,7 +81,7 @@ module Bundler
def trace(e, newline = nil, force = false)
return unless debug? || force
msg = "#{e.class}: #{e.message}\n#{e.backtrace.join("\n ")}"
- tell_me(msg, nil, newline)
+ tell_err(msg, nil, newline)
end
def silence(&blk)