fastlane-plugin-sentry 1.12.1 → 1.12.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9399ec35f10c7747eaab502eb91fef891fadb5822d4a8138fb348c603514e959
|
4
|
+
data.tar.gz: 247a753f369c96b224267ebe8d1558bb33d98c1921bb509b1cdfc57c1cc3d235
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5873223c568017300474b735caa63a5c463ffe2fa705a8510e0153589022d010c1f2ffc95f38e2e08174f64d1310f7b8c2aec3d5e9674505abb84ea54de6fb75
|
7
|
+
data.tar.gz: 004f5cf0ebda7c8e78da8f04151455b120f3432f0b2785cc35e13ec191aacdfba5d3702b89384d88a34edb40d177c30b4eefbf336b67e030487d9124759ef189
|
@@ -38,13 +38,23 @@ module Fastlane
|
|
38
38
|
end
|
39
39
|
|
40
40
|
Open3.popen2e(final_command) do |stdin, stdout_and_stderr, status_thread|
|
41
|
+
# While most of the commands are just a pass-through for stdout/stderr
|
42
|
+
# we do rely on parsing stdout in `fallback_sentry_cli_auth` helper
|
43
|
+
# We can ignore `stderr`, which is responsible for logging
|
44
|
+
# as `sentry-cli info --config-status-json` which we use, doesnt allow `--verbose`.
|
45
|
+
output = []
|
46
|
+
|
41
47
|
stdout_and_stderr.each_line do |line|
|
42
|
-
|
48
|
+
l = line.strip!
|
49
|
+
UI.message(l)
|
50
|
+
output << l
|
43
51
|
end
|
44
52
|
|
45
53
|
unless status_thread.value.success?
|
46
54
|
UI.user_error!('Error while calling Sentry CLI')
|
47
55
|
end
|
56
|
+
|
57
|
+
output.join
|
48
58
|
end
|
49
59
|
end
|
50
60
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-sentry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.12.
|
4
|
+
version: 1.12.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sentry
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|