pilot/lib/pilot/build_manager.rb in fastlane-2.219.0 vs pilot/lib/pilot/build_manager.rb in fastlane-2.220.0
- old
+ new
@@ -63,18 +63,21 @@
if config[:skip_waiting_for_build_processing]
if config[:changelog].nil?
UI.important("`skip_waiting_for_build_processing` used and no `changelog` supplied - skipping waiting for build processing")
return
else
+ UI.important("`skip_waiting_for_build_processing` used and `changelog` supplied - will wait until build appears on App Store Connect, update the changelog and then skip the rest of the remaining of the processing steps.")
return_when_build_appears = true
end
end
# Calling login again here is needed if login was not called during 'start'
login unless should_login_in_start
- UI.message("If you want to skip waiting for the processing to be finished, use the `skip_waiting_for_build_processing` option")
- UI.message("Note that if `skip_waiting_for_build_processing` is used but a `changelog` is supplied, this process will wait for the build to appear on AppStoreConnect, update the changelog and then skip the remaining of the processing steps.")
+ if config[:skip_waiting_for_build_processing].nil?
+ UI.message("If you want to skip waiting for the processing to be finished, use the `skip_waiting_for_build_processing` option")
+ UI.message("Note that if `skip_waiting_for_build_processing` is used but a `changelog` is supplied, this process will wait for the build to appear on App Store Connect, update the changelog and then skip the remaining of the processing steps.")
+ end
latest_build = wait_for_build_processing_to_be_complete(return_when_build_appears)
distribute(options, build: latest_build)
end