summaryrefslogtreecommitdiff
path: root/lib/bundler/ui
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2017-05-17 07:58:19 +1000
committerColby Swandale <colby@taplaboratories.com>2017-05-17 07:58:19 +1000
commit0be134195bcb1b79b598def4333e36d7eac9b35e (patch)
treed4b5e84c4436b96d5c0aadd8d524323ae2e2b883 /lib/bundler/ui
parent7a47ace072df309b7fd8020bce1ef56548ba2cce (diff)
downloadbundler-0be134195bcb1b79b598def4333e36d7eac9b35e.tar.gz
stderr feature flag is notw error_on_stderr
Diffstat (limited to 'lib/bundler/ui')
-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 98c3206337..24429d1229 100644
--- a/lib/bundler/ui/shell.rb
+++ b/lib/bundler/ui/shell.rb
@@ -37,7 +37,7 @@ module Bundler
def error(msg, newline = nil)
return unless level("error")
- return tell_err(msg, :red, newline) if Bundler.feature_flag.stderr?
+ return tell_err(msg, :red, newline) if Bundler.feature_flag.error_on_stderr?
tell_me(msg, :red, newline)
end