pilot/lib/pilot/build_manager.rb in fastlane-2.98.0 vs pilot/lib/pilot/build_manager.rb in fastlane-2.99.0
- old
+ new
@@ -39,11 +39,11 @@
unless result
UI.user_error!("Error uploading ipa file, for more information see above")
end
- UI.success("Successfully uploaded the new binary to iTunes Connect")
+ UI.success("Successfully uploaded the new binary to App Store Connect")
if config[:skip_waiting_for_build_processing]
UI.important("Skip waiting for build processing")
UI.important("This means that no changelog will be set and no build will be distributed to testers")
return
@@ -180,10 +180,10 @@
if options[:groups] || options[:distribute_external]
uploaded_build.beta_review_info.demo_account_required = options[:demo_account_required] # this needs to be set for iTC to continue
begin
uploaded_build.submit_for_testflight_review!
rescue => ex
- # iTunes Connect currently may 504 on this request even though it manages to get the build in
+ # App Store Connect currently may 504 on this request even though it manages to get the build in
# the approved state, this is a temporary workaround.
raise ex unless ex.to_s.include?("504")
UI.message("Submitting the build for review timed out, trying to recover.")
updated_build = Spaceship::TestFlight::Build.find(app_id: uploaded_build.app_id, build_id: uploaded_build.id)
raise ex unless updated_build.approved?