Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ def self.check_ssl_version(forceOpenSSL)
UI.message("SSL/TLS protocol version: '#{vesion}'")
if self.is_libre_ssl(forceOpenSSL)
if Gem::Version.new(vesion) < Gem::Version.new(libressl_min)
raise "Minimum version for LibreSSL is '#{libressl_min}', please update it. Use homebrew is your are Mac user, and update ~/.bah_profile or ~/.zprofile"
raise "Minimum version for LibreSSL is '#{libressl_min}', please update it. Use homebrew is your are Mac user, and update ~/.bash_profile or ~/.zprofile"
end
else
if Gem::Version.new(vesion) > Gem::Version.new(openssl_min)
raise "Minimum version for OpenSSL is '#{openssl_min}' please update it. Use homebrew is your are Mac user, and update ~/.bah_profile or ~/.zprofile"
if Gem::Version.new(vesion) < Gem::Version.new(openssl_min)
raise "Minimum version for OpenSSL is '#{openssl_min}' please update it. Use homebrew is your are Mac user, and update ~/.bash_profile or ~/.zprofile"
end
end

Expand Down