fastlane/lib/fastlane/runner.rb in fastlane-2.85.0.beta.20180305050037 vs fastlane/lib/fastlane/runner.rb in fastlane-2.85.0.beta.20180306050019

- old
+ new

@@ -264,17 +264,14 @@ rescue Interrupt => e raise e # reraise the interruption to avoid logging this as a crash rescue FastlaneCore::Interface::FastlaneCommonException => e # these are exceptions that we dont count as crashes raise e rescue FastlaneCore::Interface::FastlaneError => e # user_error! - FastlaneCore::CrashReporter.report_crash(exception: e) action_completed(method_sym.to_s, status: FastlaneCore::ActionCompletionStatus::USER_ERROR, exception: e) raise e rescue Exception => e # rubocop:disable Lint/RescueException # high chance this is actually FastlaneCore::Interface::FastlaneCrash, but can be anything else # Catches all exceptions, since some plugins might use system exits to get out - FastlaneCore::CrashReporter.report_crash(exception: e) - action_completed(method_sym.to_s, status: FastlaneCore::ActionCompletionStatus::FAILED, exception: e) raise e end end