fastlane-plugin-match_android 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a940d3851fd0c4a1a1569d3d80a981e5f0e3f50da9cfe4d6e36daea4c05c624
|
4
|
+
data.tar.gz: 541435e0ac2ced433a347bd9a3448827bade3d0abfdfc810d55b31ef37853750
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb6621a514ffdf6367e82ae370df7afd6d477f597bdd9d099d0ab801d1b38b162e15a1ac545d6d68dd01877f87d1b5c9d843d5746b49d46c4bd48887de65bda7
|
7
|
+
data.tar.gz: '0587a4c49804bc8f1914b9323cb628b313e762a9d3a0a8ff087ad5cf3285faf8c731b53730e0e3b1c86a37cb544c9c1c6a33eb11e8a8b43899e75065335ba49c'
|
@@ -105,11 +105,11 @@ module Fastlane
|
|
105
105
|
UI.message("SSL/TLS protocol version: '#{version}'")
|
106
106
|
if self.is_libre_ssl(forceOpenSSL)
|
107
107
|
if Gem::Version.new(version) < Gem::Version.new(libressl_min)
|
108
|
-
raise "Minimum version for LibreSSL is '#{libressl_min}', please update it.
|
108
|
+
raise "Minimum version for LibreSSL is '#{libressl_min}' (you're on '#{version}'), please update it."
|
109
109
|
end
|
110
110
|
else
|
111
|
-
if Gem::Version.new(version)
|
112
|
-
raise "Minimum version for OpenSSL is '#{openssl_min}' (you're on '#{version}'), please update it.
|
111
|
+
if Gem::Version.new(version) < Gem::Version.new(openssl_min)
|
112
|
+
raise "Minimum version for OpenSSL is '#{openssl_min}' (you're on '#{version}'), please update it."
|
113
113
|
end
|
114
114
|
end
|
115
115
|
|