Method: Fastlane::Actions::AppaloosaAction.error_detected

Defined in:
fastlane/lib/fastlane/actions/appaloosa.rb

.error_detected(errors) ⇒ Object



154
155
156
157
158
159
160
# File 'fastlane/lib/fastlane/actions/appaloosa.rb', line 154

def self.error_detected(errors)
  if errors
    UI.user_error!("ERROR: #{errors}")
  else
    false
  end
end