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: 62180ad56d4720bae4f2d9abad31ff128076f028
4
- data.tar.gz: 41fc0d18208d64f7259e3c23e0495fc0075514b6
3
+ metadata.gz: 5c18dab120ecf92e69ddcb9c7f61c4e60ec2abb3
4
+ data.tar.gz: df6fff0ebf3d708e4db194d4718fb2e1531f3966
5
5
  SHA512:
6
- metadata.gz: 9b8e60d5f10e816fa27706a3f93f3565974ccd7cd1f9182e2a330d2d07ec2e68cea8f1767656b2aa7057feedabd19d8db43d20b61263067ee32ab6cd7ef953de
7
- data.tar.gz: 12aff2f4ecddbcd5e0f7963434f9e365c2b82629b14b285b3c9183724a4482f03ae144b818279a6f869af5967320d705dc2793a020160700d7138585a4dd255f
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 => ex
80
- Helper.log.debug ex # We don't want crash reporting to cause crash
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(ex)
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
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.36.0"
2
+ VERSION = "0.36.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.36.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause