diff options
author | Emily Giurleo <e.m.giurleo@gmail.com> | 2020-01-23 10:24:41 -0500 |
---|---|---|
committer | Emily Giurleo <e.m.giurleo@gmail.com> | 2020-01-23 10:24:41 -0500 |
commit | bb566b751c1a6e190920dba2d1d356b5b240b721 (patch) | |
tree | 55dfd30439e598bbd096bd6ef1317d2a2488e22a /lib | |
parent | 524f524362666cb80700430b9f3740f38befb027 (diff) | |
download | bundler-bb566b751c1a6e190920dba2d1d356b5b240b721.tar.gz |
remove warn call on LoadError
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bundler/friendly_errors.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/bundler/friendly_errors.rb b/lib/bundler/friendly_errors.rb index 046a666003..a680756f47 100644 --- a/lib/bundler/friendly_errors.rb +++ b/lib/bundler/friendly_errors.rb @@ -24,11 +24,6 @@ module Bundler when LoadError raise error unless error.message =~ /cannot load such file -- openssl|openssl.so|libcrypto.so/ Bundler.ui.error "\nCould not load OpenSSL. #{error.class}: #{error}\n#{error.backtrace.join("\n ")}" - Bundler.ui.warn <<-WARN, :wrap => true - You must recompile Ruby with OpenSSL support or change the sources in your \ - Gemfile from 'https' to 'http'. Instructions for compiling with OpenSSL \ - using RVM are available at https://rvm.io/packages/openssl. - WARN when Interrupt Bundler.ui.error "\nQuitting..." Bundler.ui.trace error |