fastlane_core 0.36.0 → 0.36.1
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c18dab120ecf92e69ddcb9c7f61c4e60ec2abb3
|
4
|
+
data.tar.gz: df6fff0ebf3d708e4db194d4718fb2e1531f3966
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa7b7f3fbb4d1e344722a8885ce7b11675269c43076215fff7c96d7d1135c6df0eab975412f11ae3010022f54f5837afd322a399027e294f4555978d1068b979
|
7
|
+
data.tar.gz: 08ad7cf64684df81de0117a18055adc3d8fa92bc0f20f4d2c60762fd4f82e68977ec6f80187e3a7cd2fa68b1bf7a9cb30bd37b02353280f86e48bfb9cbc356dd
|
@@ -50,6 +50,7 @@ module FastlaneCore
|
|
50
50
|
def handle_crash(ex)
|
51
51
|
unless enabled?
|
52
52
|
show_message
|
53
|
+
return
|
53
54
|
end
|
54
55
|
|
55
56
|
raise ex if Helper.test?
|
@@ -76,8 +77,8 @@ module FastlaneCore
|
|
76
77
|
puts "Successfully submitted a crash report. If this is a problem with one of the tools specifically,".yellow
|
77
78
|
puts "please submit an issue on GitHub and attach the following number to it: '#{crash.id}'".yellow
|
78
79
|
puts "The crash report has been stored locally '#{path}'".yellow
|
79
|
-
rescue =>
|
80
|
-
Helper.log.debug
|
80
|
+
rescue => e
|
81
|
+
Helper.log.debug e # We don't want crash reporting to cause crash
|
81
82
|
end
|
82
83
|
end
|
83
84
|
end
|
@@ -43,7 +43,7 @@ module Commander
|
|
43
43
|
abort error_message # without stack trace
|
44
44
|
end
|
45
45
|
rescue => e # high chance this is actually FastlaneCore::Interface::FastlaneCrash, but can be anything else
|
46
|
-
FastlaneCore::CrashReporting.handle_crash(
|
46
|
+
FastlaneCore::CrashReporting.handle_crash(e)
|
47
47
|
# From https://stackoverflow.com/a/4789702/445598
|
48
48
|
# We do this to make the actual error message red and therefore more visible
|
49
49
|
raise e, "[!] #{e.message}".red, e.backtrace
|