fastlane-plugin-sentry 1.0.3 → 1.0.4
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf9cb26bc2e7b56fa2fce4970cc350ef6dc6d490
|
|
4
|
+
data.tar.gz: 39f0986bc20407588207060eb07d60bb1894dcec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea16d9baeb7ef7066cd413dfeb0e6c7126c1b3ffab67cca359275e8a607e1b6c54cc274cf11584e22c50aad3862bf8117c31579eac28bf9b5268f4a86c94624e
|
|
7
|
+
data.tar.gz: 7bbd51e5a73abc0623ff80f0fa4f15d3a9416a9d16b787c44de76db35545cff3df98301363573890af0eefd930fb37b964740a80956240f9ffe7f76980c2c71f
|
|
@@ -56,8 +56,8 @@ module Fastlane
|
|
|
56
56
|
UI.user_error!("Install sentry-cli and start your lane again!")
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
sentry_cli_version = `sentry-cli --version`.
|
|
60
|
-
required_version = Fastlane::Sentry::CLI_VERSION
|
|
59
|
+
sentry_cli_version = Gem::Version.new(`sentry-cli --version`.scan(/(?:\d+\.?){3}/).first)
|
|
60
|
+
required_version = Gem::Version.new(Fastlane::Sentry::CLI_VERSION)
|
|
61
61
|
if sentry_cli_version < required_version
|
|
62
62
|
UI.user_error!("Your sentry-cli is outdated, please upgrade to at least version #{Fastlane::Sentry::CLI_VERSION} and start your lane again!")
|
|
63
63
|
end
|